Package org.apache.openjpa.event
Interface DeleteListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface DeleteListener
Listener for when a persistent instance is deleted.- Author:
- Steve Kim, Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterDelete(LifecycleEvent event)
Invoked after the instance transferred to a deleted state.void
beforeDelete(LifecycleEvent event)
Invoked before the instance transferred to a deleted state.
-
-
-
Method Detail
-
beforeDelete
void beforeDelete(LifecycleEvent event)
Invoked before the instance transferred to a deleted state.
-
afterDelete
void afterDelete(LifecycleEvent event)
Invoked after the instance transferred to a deleted state.
-
-