Package javax.jdo.listener
Interface DirtyLifecycleListener
- All Superinterfaces:
InstanceLifecycleListener
This interface is implemented by listeners to be notified of
dirty events.
- Since:
- 2.0
- Version:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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.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.
-
Method Details
-
preDirty
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.- Since:
- 2.0
-
postDirty
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.- Since:
- 2.0
-