| java.lang.Object org.ow2.easybeans.tests.enhancer.wrongspecification.bean.SLSBFinalInternalInterceptor
SLSBFinalInternalInterceptor | public class SLSBFinalInternalInterceptor implements ItfOneMethod00(Code) | | This bean has an internal interceptor with static method modifier.
It isn't in agreement with the JSR 220 - EJB 3.0 Spec.
author: Eduardo Studzinski Estima de Castro author: Gisele Pinheiro Souza |
Method Summary | |
final public Object | doNothing(InvocationContext invocationContext) Intercepts the method and do nothing.
Parameters: invocationContext - contains attributes of invocation, the firstparameter of the intercepted method must be a list. | public Object | doOne(Integer i) This method has an inteceptor with void return type. |
doNothing | final public Object doNothing(InvocationContext invocationContext) throws Exception(Code) | | Intercepts the method and do nothing.
Parameters: invocationContext - contains attributes of invocation, the firstparameter of the intercepted method must be a list. method's invocation result throws: Exception - if invocation fails |
doOne | public Object doOne(Integer i)(Code) | | This method has an inteceptor with void return type.
Parameters: i - integer null |
|
|