01: package org.strecks.controller.impl;
02:
03: import java.util.List;
04: import java.util.Map;
05:
06: import org.strecks.context.ActionContext;
07: import org.strecks.controller.ControllerAction;
08: import org.strecks.injection.internal.InjectionWrapper;
09: import org.strecks.interceptor.AfterInterceptor;
10: import org.strecks.interceptor.BeforeInterceptor;
11: import org.strecks.source.ActionBeanSource;
12: import org.strecks.view.ViewAdapter;
13:
14: /**
15: * @author Phil Zoio
16: */
17: public class NonActionController implements ControllerAction {
18:
19: public void setBeanSource(ActionBeanSource clazz) {
20: }
21:
22: public ActionBeanSource getBeanSource() {
23: return null;
24: }
25:
26: public void setInjectionHandlers(
27: Map<String, InjectionWrapper> injectionHandlers) {
28: }
29:
30: public void preExecute(Object actionBean,
31: ActionContext actionContext, Exception e) throws Exception {
32: }
33:
34: public ViewAdapter executeController(Object actionBean,
35: ActionContext actionContext) throws Exception {
36: return null;
37: }
38:
39: public List<BeforeInterceptor> getBeforeInterceptors() {
40: return null;
41: }
42:
43: public List<AfterInterceptor> getAfterInterceptors() {
44: return null;
45: }
46:
47: public void preExecute(Object actionBean,
48: ActionContext actionContext) throws Exception {
49: }
50:
51: public void postExecute(Object actionBean,
52: ActionContext actionContext, Exception exception)
53: throws Exception {
54: }
55:
56: }
|