Package org.apache.openjpa.event
Interface DirtyListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface DirtyListenerListener for when a persistent instance becomes dirty.- Author:
- Steve Kim, Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterDirty(LifecycleEvent event)Invoked after the first change is applied.voidafterDirtyFlushed(LifecycleEvent event)Invoked after the first change is applied to a flushed instance.voidbeforeDirty(LifecycleEvent event)Invoked before the first change is applied.voidbeforeDirtyFlushed(LifecycleEvent event)Invoked before the first change is applied to a flushed instance.
-
-
-
Method Detail
-
beforeDirty
void beforeDirty(LifecycleEvent event)
Invoked before the first change is applied.
-
afterDirty
void afterDirty(LifecycleEvent event)
Invoked after the first change is applied.
-
beforeDirtyFlushed
void beforeDirtyFlushed(LifecycleEvent event)
Invoked before the first change is applied to a flushed instance.
-
afterDirtyFlushed
void afterDirtyFlushed(LifecycleEvent event)
Invoked after the first change is applied to a flushed instance.
-
-