public interface DetachCallback
| Modifier and Type | Method | Description |
|---|---|---|
void |
jdoPostDetach(java.lang.Object detached) |
This method is called during the execution of
PersistenceManager.detachCopy(T) on the
detached instance after the copy is made. |
void |
jdoPreDetach() |
This method is called during the execution of
PersistenceManager.detachCopy(T) on the
persistent instance before the copy is made. |
void jdoPreDetach()
PersistenceManager.detachCopy(T) on the
persistent instance before the copy is made.void jdoPostDetach(java.lang.Object detached)
PersistenceManager.detachCopy(T) on the
detached instance after the copy is made.detached - The corresponding (attached) persistent instance.