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.ejb3.interceptor;
08:
09: import javax.interceptor.InvocationContext;
10:
11: /**
12: * Bean ä¸çš„ @Interceptors @InvokeAround æ??述的方法
13: *
14: * @author <a href="mailto:jfox.young@gmail.com">Young Yang</a>
15: */
16: public interface InterceptorMethod {
17:
18: Object invoke(InvocationContext invocationContext) throws Exception;
19:
20: }
|