]> source.dussan.org Git - archiva.git/blob
559d98ed3e13737592886035fc3cac449d009028
[archiva.git] /
1 package org.apache.archiva.redback.struts2;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import com.opensymphony.xwork2.ActionInvocation;
23 import com.opensymphony.xwork2.ActionProxy;
24 import com.opensymphony.xwork2.config.entities.ActionConfig;
25
26 public class ActionProxyStub
27     implements ActionProxy
28 {
29     public static final String ACTION_NAME = "stub_action";
30
31     public static final String NAMESPACE = "namespace";
32
33     public static final String METHOD = "method";
34
35     private String methodName;
36
37     private String actionName;
38
39     public Object getAction()
40     {
41         return null;
42     }
43
44     public void setActionName( String name )
45     {
46         actionName = name;
47     }
48
49     public void prepare() throws Exception
50     {
51         //Do nothing
52     }
53
54     public String getActionName()
55     {
56         if ( actionName != null )
57         {
58             return actionName;
59         }
60         else
61         {
62             return ACTION_NAME;
63         }
64     }
65
66     public ActionConfig getConfig()
67     {
68         return null;
69     }
70
71     public void setExecuteResult( boolean result )
72     {
73
74     }
75
76     public boolean getExecuteResult()
77     {
78         return false;
79     }
80
81     public ActionInvocation getInvocation()
82     {
83         return null;
84     }
85
86     public String getNamespace()
87     {
88         return NAMESPACE;
89     }
90
91     public String execute()
92     {
93         return null;
94     }
95
96     public void setMethod( String name )
97     {
98         methodName = name;
99     }
100
101     public String getMethod()
102     {
103         if ( methodName != null )
104         {
105             return methodName;
106         }
107         else
108         {
109             return METHOD;
110         }
111     }
112 }