]> source.dussan.org Git - archiva.git/blob
28efa64efbc45128c1ebb31b267123e4c188a55c
[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.ActionContext;
23 import com.opensymphony.xwork2.ActionEventListener;
24 import com.opensymphony.xwork2.ActionInvocation;
25 import com.opensymphony.xwork2.ActionProxy;
26 import com.opensymphony.xwork2.Result;
27 import com.opensymphony.xwork2.interceptor.PreResultListener;
28 import com.opensymphony.xwork2.util.ValueStack;
29
30 /**
31  * @noinspection ProhibitedExceptionDeclared
32  */
33 public class ActionInvocationStub
34     implements ActionInvocation
35 {
36     private ActionContext actionContext = new ActionContextStub();
37
38     private ActionProxy actionProxy = new ActionProxyStub();
39
40     public ActionInvocationStub()
41     {
42         actionContext.setActionInvocation( this );
43     }
44
45     public Object getAction()
46     {
47         return null;
48     }
49
50     public boolean isExecuted()
51     {
52         return false;
53     }
54
55     public ActionContext getInvocationContext()
56     {
57         return actionContext;
58     }
59
60     public ActionProxy getProxy()
61     {
62         return actionProxy;
63     }
64
65     public Result getResult()
66         throws Exception
67     {
68         return null;
69     }
70
71     public String getResultCode()
72     {
73         return null;
74     }
75
76     public void setResultCode( String code )
77     {
78
79     }
80
81     public ValueStack getStack()
82     {
83         return null;
84     }
85
86     public void addPreResultListener( PreResultListener listener )
87     {
88
89     }
90
91     public String invoke()
92         throws Exception
93     {
94         return null;
95     }
96
97     public String invokeActionOnly()
98         throws Exception
99     {
100         return null;
101     }
102
103     public void setActionEventListener(ActionEventListener arg0) {
104         
105     }
106
107     public void init(ActionProxy arg0) {
108         
109     }
110
111 }