| |
|
| java.lang.Object com.opensymphony.xwork.mock.MockInterceptor
Method Summary | |
public void | destroy() Called to let an interceptor clean up any resources it has allocated. | public boolean | equals(Object o) | public String | getExpectedFoo() | public String | getFoo() | public int | hashCode() | public void | init() Called after an Interceptor is created, but before any requests are processed using the intercept() methodName. | public String | intercept(ActionInvocation invocation) Allows the Interceptor to do some processing on the request before and/or after the rest of the processing of the
request by the DefaultActionInvocation or to short-circuit the processing and just return a String return code. | public boolean | isExecuted() | public void | setExpectedFoo(String expectedFoo) | public void | setFoo(String foo) |
DEFAULT_FOO_VALUE | final public static String DEFAULT_FOO_VALUE(Code) | | |
destroy | public void destroy()(Code) | | Called to let an interceptor clean up any resources it has allocated.
|
hashCode | public int hashCode()(Code) | | |
init | public void init()(Code) | | Called after an Interceptor is created, but before any requests are processed using the intercept() methodName. This
gives the Interceptor a chance to initialize any needed resources.
|
intercept | public String intercept(ActionInvocation invocation) throws Exception(Code) | | Allows the Interceptor to do some processing on the request before and/or after the rest of the processing of the
request by the DefaultActionInvocation or to short-circuit the processing and just return a String return code.
|
isExecuted | public boolean isExecuted()(Code) | | |
setExpectedFoo | public void setExpectedFoo(String expectedFoo)(Code) | | |
|
|
|