Package org.apache.openejb.jee
Interface Lifecycle
-
- All Known Subinterfaces:
EnterpriseBean,RemoteBean,Session
- All Known Implementing Classes:
ApplicationClient,EntityBean,Interceptor,ManagedBean,MessageDrivenBean,SessionBean,SingletonBean,StatefulBean,StatelessBean,WebApp
public interface Lifecycle- Version:
- $Rev$ $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddPostConstruct(String method)voidaddPreDestroy(String method)List<LifecycleCallback>getPostConstruct()List<LifecycleCallback>getPreDestroy()
-
-
-
Method Detail
-
getPostConstruct
List<LifecycleCallback> getPostConstruct()
-
getPreDestroy
List<LifecycleCallback> getPreDestroy()
-
addPostConstruct
void addPostConstruct(String method)
-
addPreDestroy
void addPreDestroy(String method)
-
-