]> source.dussan.org Git - archiva.git/blob
d68b6be4087d1eb870ab9990ea61f6bf446247d8
[archiva.git] /
1 package org.apache.maven.archiva.web.action;\r
2 \r
3 /*\r
4  * Licensed to the Apache Software Foundation (ASF) under one\r
5  * or more contributor license agreements.  See the NOTICE file\r
6  * distributed with this work for additional information\r
7  * regarding copyright ownership.  The ASF licenses this file\r
8  * to you under the Apache License, Version 2.0 (the\r
9  * "License"); you may not use this file except in compliance\r
10  * with the License.  You may obtain a copy of the License at\r
11  *\r
12  *  http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing,\r
15  * software distributed under the License is distributed on an\r
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r
17  * KIND, either express or implied.  See the License for the\r
18  * specific language governing permissions and limitations\r
19  * under the License.\r
20  */\r
21 \r
22 import com.opensymphony.xwork2.ActionSupport;\r
23 import java.util.Map;\r
24 import org.apache.struts2.interceptor.SessionAware;\r
25 import org.codehaus.plexus.logging.LogEnabled;\r
26 import org.codehaus.plexus.logging.Logger;\r
27 \r
28 /**\r
29  * LogEnabled and SessionAware ActionSupport\r
30  */\r
31 public abstract class PlexusActionSupport\r
32     extends ActionSupport\r
33     implements LogEnabled, SessionAware\r
34 {\r
35     protected Map session;\r
36 \r
37     private Logger logger;\r
38 \r
39     public void setSession( Map map )\r
40     {\r
41         //noinspection AssignmentToCollectionOrArrayFieldFromParameter\r
42         this.session = map;\r
43     }\r
44 \r
45     public void enableLogging( Logger logger )\r
46     {\r
47         this.logger = logger;\r
48     }\r
49 \r
50     protected Logger getLogger()\r
51     {\r
52         return logger;\r
53     }\r
54 }\r