Package javax.jdo.listener
Interface CreateLifecycleListener
-
- All Superinterfaces:
InstanceLifecycleListener
public interface CreateLifecycleListener extends InstanceLifecycleListener
This interface is implemented by listeners to be notified of create events.- Since:
- 2.0
- Version:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostCreate(InstanceLifecycleEvent event)Invoked whenever an instance is made persistent via a call toPersistenceManager.makePersistent(T)or during persistence by reachability.
-
-
-
Method Detail
-
postCreate
void postCreate(InstanceLifecycleEvent event)
Invoked whenever an instance is made persistent via a call toPersistenceManager.makePersistent(T)or during persistence by reachability.- Parameters:
event- the create event.- Since:
- 2.0
-
-