Method Summary |
|
public boolean | objectCanActivate(ObjectContainer container) called before an Object is activated.
Parameters: container - the ObjectContainer the object is stored in. |
public boolean | objectCanDeactivate(ObjectContainer container) called before an Object is deactivated.
Parameters: container - the ObjectContainer the object is stored in. |
public boolean | objectCanDelete(ObjectContainer container) called before an Object is deleted.
In a client/server setup this callback method will be executed on
the server.
Parameters: container - the ObjectContainer the object is stored in. |
public boolean | objectCanNew(ObjectContainer container) called before an Object is stored the first time.
Parameters: container - the ObjectContainer is about to be stored to. |
public boolean | objectCanUpdate(ObjectContainer container) called before a persisted Object is updated.
Parameters: container - the ObjectContainer the object is stored in. |
public void | objectOnActivate(ObjectContainer container) called upon activation of an object. |
public void | objectOnDeactivate(ObjectContainer container) called upon deactivation of an object. |
public void | objectOnDelete(ObjectContainer container) called after an object was deleted. |
public void | objectOnNew(ObjectContainer container) called after a new object was stored. |
public void | objectOnUpdate(ObjectContainer container) called after an object was updated. |