Package | Description |
---|---|
javax.jdo.listener |
This package contains the JDO specification listener interfaces and classes.
|
Modifier and Type | Method and Description |
---|---|
void |
AttachLifecycleListener.postAttach(InstanceLifecycleEvent event)
This method is called after a detached instance is attached, via the
PersistenceManager.makePersistent(T) method. |
void |
AttachLifecycleListener.postAttach(InstanceLifecycleEvent event)
This method is called after a detached instance is attached, via the
PersistenceManager.makePersistent(T) method. |
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. |
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. |
void |
CreateLifecycleListener.postCreate(InstanceLifecycleEvent event)
Invoked whenever an instance is made persistent via a
call to
PersistenceManager.makePersistent(T) or during
persistence by reachability. |
void |
CreateLifecycleListener.postCreate(InstanceLifecycleEvent event)
Invoked whenever an instance is made persistent via a
call to
PersistenceManager.makePersistent(T) or during
persistence by reachability. |
void |
DeleteLifecycleListener.postDelete(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.postDetach(InstanceLifecycleEvent event)
This method is called during the execution of
PersistenceManager.detachCopy(T) after the
detached copy is made. |
void |
DetachLifecycleListener.postDetach(InstanceLifecycleEvent event)
This method is called during the execution of
PersistenceManager.detachCopy(T) after the
detached copy is made. |
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 |
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 |
LoadLifecycleListener.postLoad(InstanceLifecycleEvent event)
Invoked whenever a persistent instance is loaded from the data
store.
|
void |
StoreLifecycleListener.postStore(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 before a detached instance is attached, via the
PersistenceManager.makePersistent(T) method. |
void |
AttachLifecycleListener.preAttach(InstanceLifecycleEvent event)
This method is called before a detached instance is attached, via the
PersistenceManager.makePersistent(T) method. |
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.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 |
DeleteLifecycleListener.preDelete(InstanceLifecycleEvent event)
Invoked whenever a persistent instance is deleted, for example
during
PersistenceManager.deletePersistent(java.lang.Object) . |
void |
DeleteLifecycleListener.preDelete(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(T) before the
detached copy is made. |
void |
DetachLifecycleListener.preDetach(InstanceLifecycleEvent event)
This method is called during the execution of
PersistenceManager.detachCopy(T) before 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.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 |
StoreLifecycleListener.preStore(InstanceLifecycleEvent event)
Invoked whenever a persistent instance is stored, for example during
PersistenceManager.flush() or
Transaction.commit() . |
void |
StoreLifecycleListener.preStore(InstanceLifecycleEvent event)
Invoked whenever a persistent instance is stored, for example during
PersistenceManager.flush() or
Transaction.commit() . |
Copyright © 2005–1970 Apache Software Foundation. All rights reserved.