Package org.glassfish.ejb.spi
Interface EjbContainerInterceptor
-
@Contract public interface EjbContainerInterceptorContract interface for registering EjbContainerInterceptor to the Ejb Container. It can be inherited by anyone who want to extend the Ejb Container.- Author:
- Jeremy_Lv
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostInvoke(com.sun.enterprise.deployment.EjbDescriptor ejbDesc)User can set some useful informations after invoking the EJB applicationvoidpreInvoke(com.sun.enterprise.deployment.EjbDescriptor ejbDesc)User can set some useful informations before invoking the EJB application
-
-
-
Method Detail
-
preInvoke
void preInvoke(com.sun.enterprise.deployment.EjbDescriptor ejbDesc)
User can set some useful informations before invoking the EJB application- Parameters:
ejbDesc-
-
postInvoke
void postInvoke(com.sun.enterprise.deployment.EjbDescriptor ejbDesc)
User can set some useful informations after invoking the EJB application- Parameters:
ejbDesc-
-
-