Package org.glassfish.ejb.spi
Interface EjbContainerInterceptor
@Contract
public interface EjbContainerInterceptor
Contract 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
Modifier and TypeMethodDescriptionvoidpostInvoke(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 Details
-
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-
-