Interface HandlerLifecycleManager
-
- All Known Implementing Classes:
HandlerLifecycleManagerImpl
public interface HandlerLifecycleManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlercreateHandlerInstance(MessageContext mc, Class handlerClass)voiddestroyHandlerInstance(MessageContext mc, Handler handler)voidinvokePostConstruct()voidinvokePreDestroy()
-
-
-
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
-
-