public class LifeCycleCallbackCollection extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
LIFECYCLE_CALLBACK_COLLECTION |
| Constructor and Description |
|---|
LifeCycleCallbackCollection() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(LifeCycleCallback callback)
Add a Callback to the list of callbacks.
|
void |
callPostConstructCallback(Object o)
Call the method, if one exists, that is annotated with PostConstruct
or with <post-construct> in web.xml
|
void |
callPreDestroyCallback(Object o)
Call the method, if one exists, that is annotated with PreDestroy
or with <pre-destroy> in web.xml
|
List<LifeCycleCallback> |
getPostConstructCallbacks(Object o) |
List<LifeCycleCallback> |
getPreDestroyCallbacks(Object o) |
public static final String LIFECYCLE_CALLBACK_COLLECTION
public void add(LifeCycleCallback callback)
callback - public List<LifeCycleCallback> getPreDestroyCallbacks(Object o)
public List<LifeCycleCallback> getPostConstructCallbacks(Object o)
public void callPostConstructCallback(Object o) throws Exception
o - the object on which to attempt the callbackExceptionCopyright © 1995-2015 Mort Bay Consulting. All Rights Reserved.