Uses of Class
javax.jdo.listener.InstanceLifecycleEvent

Packages that use InstanceLifecycleEvent
javax.jdo.listener This package contains the JDO specification listener interfaces and classes. 
 

Uses of InstanceLifecycleEvent in javax.jdo.listener
 

Methods in javax.jdo.listener with parameters of type InstanceLifecycleEvent
 void DeleteLifecycleListener.preDelete(InstanceLifecycleEvent event)
          Invoked whenever a persistent instance is deleted, for example during PersistenceManager.deletePersistent(java.lang.Object).
 void DeleteLifecycleListener.postDelete(InstanceLifecycleEvent event)
          Invoked whenever a persistent instance is deleted, for example during PersistenceManager.deletePersistent(java.lang.Object).
 void DetachLifecycleListener.preDetach(InstanceLifecycleEvent event)
          This method is called during the execution of PersistenceManager.detachCopy(java.lang.Object) before the detached copy is made.
 void DetachLifecycleListener.postDetach(InstanceLifecycleEvent event)
          This method is called during the execution of PersistenceManager.detachCopy(java.lang.Object) after the detached copy is made.
 void DirtyLifecycleListener.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.
 void DirtyLifecycleListener.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 LoadLifecycleListener.postLoad(InstanceLifecycleEvent event)
          Invoked whenever a persistent instance is loaded from the data store.
 void CreateLifecycleListener.postCreate(InstanceLifecycleEvent event)
          Invoked whenever an instance is made persistent via a call to PersistenceManager.makePersistent(java.lang.Object) or during persistence by reachability.
 void StoreLifecycleListener.preStore(InstanceLifecycleEvent event)
          Invoked whenever a persistent instance is stored, for example during PersistenceManager.flush() or Transaction.commit().
 void StoreLifecycleListener.postStore(InstanceLifecycleEvent event)
          Invoked whenever a persistent instance is stored, for example during PersistenceManager.flush() or Transaction.commit().
 void AttachLifecycleListener.preAttach(InstanceLifecycleEvent event)
          This method is called during the execution of PersistenceManager.attachCopy(java.lang.Object, boolean) before the copy is made.
 void AttachLifecycleListener.postAttach(InstanceLifecycleEvent event)
          This method is called during the execution of PersistenceManager.attachCopy(java.lang.Object, boolean) on the persistent instance after the copy is made.
 void ClearLifecycleListener.preClear(InstanceLifecycleEvent event)
          This method is called before the implementation calls the instance method ClearCallback.jdoPreClear() and before it clears the values in the instance to their Java default values.
 void ClearLifecycleListener.postClear(InstanceLifecycleEvent event)
          This method is called after the ClearCallback.jdoPreClear() method is invoked on the instance and the fields have been cleared by the JDO implementation.
 



Copyright © 2005 Apache Software Foundation. All Rights Reserved.