01: /*
02: * JFox - The most lightweight Java EE Application Server!
03: * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
04: *
05: * JFox is licenced and re-distributable under GNU LGPL.
06: */
07: package org.jfox.mvc;
08:
09: import org.jfox.framework.annotation.Exported;
10: import org.jfox.framework.component.Component;
11:
12: /**
13: * 所有Action的接å?£ï¼ŒAction实现Service接å?£ï¼Œè¿™æ ·æ‰?能被外界所访问
14: *
15: * Action 会注册到 Framework,Action 注册的时候,
16: * 会将Actionæ·»åŠ åˆ° ControllerServlet çš„Action列表ä¸
17: *
18: * @author <a href="mailto:jfox.young@gmail.com">Young Yang</a>
19: */
20: @Exported
21: public interface Action extends Component {
22:
23: void execute(ActionContext actionContext) throws Exception;
24:
25: }
|