javax.jdo.listener.DirtyLifecycleListener - JDO interface
javax.jdo.listener
Interface DirtyLifecycleListener
- Superinterfaces:
- InstanceLifecycleListener
This interface is implemented by listeners to be notified of dirty events.
- Since:
- JDO 2.0
void postDirty( InstanceLifecycleEvent event)
Invoked whenever a persistent instance is first made dirty, during an operation that modifies the value of a persistent or transactional field. Called after the value is changed.
- Parameters:
-
event
-
- Since:
- JDO 2.0
void preDirty( InstanceLifecycleEvent event)
Invoked whenever a persistent instance is first made dirty, during an operation that modifies the value of a persistent or transactional field. Called before the value is changed.
- Parameters:
-
event
-
- Since:
- JDO 2.0