com.sun.ejb.containers.interceptors
Interface InterceptorManager.AroundInvokeContext

All Superinterfaces:
InvocationContext
All Known Implementing Classes:
AroundInvokeInvocationContext, EjbInvocation
Enclosing class:
InterceptorManager

public static interface InterceptorManager.AroundInvokeContext
extends InvocationContext


Method Summary
 Object[] getInterceptorInstances()
           
 Object invokeBeanMethod()
          Called from Interceptor Chain to invoke the actual bean method.
 
Methods inherited from interface javax.interceptor.InvocationContext
getContextData, getMethod, getParameters, getTarget, getTimer, proceed, setParameters
 

Method Detail

getInterceptorInstances

Object[] getInterceptorInstances()

invokeBeanMethod

Object invokeBeanMethod()
                        throws Throwable
Called from Interceptor Chain to invoke the actual bean method. This method must throw any exception from the bean method *as is*, without being wrapped in an InvocationTargetException. The exception thrown from this method will be propagated through the application's interceptor code, so it must not be changed in order for any exception handling logic in that code to function properly.

Throws:
Throwable


Copyright © 2012 GlassFish Community. All Rights Reserved.