Package org.apache.openjpa.event
Interface DetachListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface DetachListenerListener for when a persistent instance is detached.- Author:
- Steve Kim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterDetach(LifecycleEvent event)Invoked after the instance has been detached.voidbeforeDetach(LifecycleEvent event)Invoked before the instance is detached.
-
-
-
Method Detail
-
beforeDetach
void beforeDetach(LifecycleEvent event)
Invoked before the instance is detached.
-
afterDetach
void afterDetach(LifecycleEvent event)
Invoked after the instance has been detached.
-
-