Interface HandlerLifecycleManager
-
- All Known Implementing Classes:
HandlerLifecycleManagerImpl
public interface HandlerLifecycleManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Handler
createHandlerInstance(MessageContext mc, Class handlerClass)
void
destroyHandlerInstance(MessageContext mc, Handler handler)
void
invokePostConstruct()
void
invokePreDestroy()
-
-
-
Method Detail
-
createHandlerInstance
Handler createHandlerInstance(MessageContext mc, Class handlerClass) throws LifecycleException, ResourceInjectionException
-
destroyHandlerInstance
void destroyHandlerInstance(MessageContext mc, Handler handler) throws LifecycleException, ResourceInjectionException
-
invokePostConstruct
void invokePostConstruct() throws LifecycleException
- Throws:
LifecycleException
-
invokePreDestroy
void invokePreDestroy() throws LifecycleException
- Throws:
LifecycleException
-
-