Package org.apache.openjpa.event
Interface ClearListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface ClearListenerListener for when persistent state is cleared from an instance.- Author:
- Steve Kim, Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterClear(LifecycleEvent event)Invoked after state is cleared.voidbeforeClear(LifecycleEvent event)Invoked before state is cleared.
-
-
-
Method Detail
-
beforeClear
void beforeClear(LifecycleEvent event)
Invoked before state is cleared.
-
afterClear
void afterClear(LifecycleEvent event)
Invoked after state is cleared.
-
-