Version 9.6
 —  CentraSite Application Framework  —

Event Mechanism

The CSAF allows the user to register and receive notifications when certain events occur. Currently, three persistence events are supported: objectDeleted, objectCreated, objectUpdated. These events can be intercepted by implementing the interface com.softwareag.centrasite.appl.framework.persistence.PersistenceEventListener. Such listeners are registered via the BeanPool, which has methods for adding, removing and retrieving listeners.

All of the supported events are post events; in other words, they are fired after an action has been performed. CSAF currently does not support any pre-action events. However, such events are being planned for upcoming versions.

Top of page