Package org.apache.openjpa.event
Interface ClearListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface ClearListener
Listener 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 void
afterClear(LifecycleEvent event)
Invoked after state is cleared.void
beforeClear(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.
-
-