Package org.apache.openjpa.event
Interface LifecycleCallbacks
- 
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 BeanLifecycleCallbacks,MethodLifecycleCallbacks
public interface LifecycleCallbacks extends Serializable
A lifecycle listener that responds to callbacks rather than events.- Author:
 - Steve Kim
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasCallback(Object obj, int eventType)Return whether the given instance has a callback for the given event type.voidmakeCallback(Object obj, Object related, int eventType)Invoke the callback for the given event type on the given instance. 
 - 
 
- 
- 
Method Detail
- 
hasCallback
boolean hasCallback(Object obj, int eventType)
Return whether the given instance has a callback for the given event type. 
 - 
 
 -