Package org.apache.openjpa.event
Interface DetachListener
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface DetachListener
Listener for when a persistent instance is detached.
- Author:
- Steve Kim
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterDetach
(LifecycleEvent event) Invoked after the instance has been detached.void
beforeDetach
(LifecycleEvent event) Invoked before the instance is detached.
-
Method Details
-
beforeDetach
Invoked before the instance is detached. -
afterDetach
Invoked after the instance has been detached.
-