JdoLifecycleListener

  • enlistCreated <→ postStore (when NEW)

  • enlistDeleting <→ preDelete

  • enlistUpdating <→ preDirty

  • recognizeLoaded <→ postLoad

  • recognizePersisting <→ preStore (when NEW)

  • recognizeUpdating <→ postStore (when NOT NEW)

API

JdoLifecycleListener.java
class JdoLifecycleListener {
  void postCreate(InstanceLifecycleEvent event)
  void preAttach(InstanceLifecycleEvent event)
  void postAttach(InstanceLifecycleEvent event)
  void postLoad(InstanceLifecycleEvent event)
  void preStore(InstanceLifecycleEvent event)
  void postStore(InstanceLifecycleEvent event)
  void preDirty(InstanceLifecycleEvent event)
  void postDirty(InstanceLifecycleEvent event)
  void preDelete(InstanceLifecycleEvent event)
  void postDelete(InstanceLifecycleEvent event)
  void preClear(InstanceLifecycleEvent event)     (1)
  void postClear(InstanceLifecycleEvent event)     (2)
  void preDetach(InstanceLifecycleEvent event)
  void postDetach(InstanceLifecycleEvent event)
}
1 preClear(InstanceLifecycleEvent)

Does nothing, not important event for Causeway to track.

2 postClear(InstanceLifecycleEvent)

Does nothing, not important event for Causeway to track.

Members

preClear(InstanceLifecycleEvent)

Does nothing, not important event for Causeway to track.

postClear(InstanceLifecycleEvent)

Does nothing, not important event for Causeway to track.