Events
public final class Events
Field Summary | |
---|---|
final string | The loadClassMetadata event occurs after the mapping metadata for a class has been loaded from a mapping source (annotations/xml/yaml). |
final string | The onFlush event occurs when the EntityManager#flush() operation is invoked, after any changes to managed entities have been determined but before any actual database operations are executed. |
final string | The postLoad event occurs for an entity after the entity has been loaded into the current EntityManager from the database or after the refresh operation has been applied to it. |
final string | The postPersist event occurs for an entity after the entity has been made persistent. |
final string | The postRemove event occurs for an entity after the entity has been deleted. |
final string | The postUpdate event occurs after the database update operations to entity data. |
final string | The prePersist event occurs for a given entity before the respective EntityManager persist operation for that entity is executed. |
final string | The preRemove event occurs for a given entity before the respective EntityManager remove operation for that entity is executed. |
final string | The preUpdate event occurs before the database update operations to entity data. |
Constructor Summary | |
---|---|
Events() |
public final string loadClassMetadata = 'loadClassMetadata'
The loadClassMetadata event occurs after the mapping metadata for a class has been loaded from a mapping source (annotations/xml/yaml).
public final string onFlush = 'onFlush'
The onFlush event occurs when the EntityManager#flush() operation is invoked, after any changes to managed entities have been determined but before any actual database operations are executed. The event is only raised if there is actually something to do for the underlying UnitOfWork. If nothing needs to be done, the onFlush event is not raised.
public final string postLoad = 'postLoad'
The postLoad event occurs for an entity after the entity has been loaded into the current EntityManager from the database or after the refresh operation has been applied to it.
Note that the postLoad event occurs for an entity before any associations have been initialized. Therefore it is not safe to access associations in a postLoad callback or event handler.
This is an entity lifecycle event.
public final string postPersist = 'postPersist'
The postPersist event occurs for an entity after the entity has been made persistent. It will be invoked after the database insert operations. Generated primary key values are available in the postPersist event.
This is an entity lifecycle event.
public final string postRemove = 'postRemove'
The postRemove event occurs for an entity after the entity has been deleted. It will be invoked after the database delete operations.
This is an entity lifecycle event.
public final string postUpdate = 'postUpdate'
The postUpdate event occurs after the database update operations to entity data.
This is an entity lifecycle event.
public final string prePersist = 'prePersist'
The prePersist event occurs for a given entity before the respective EntityManager persist operation for that entity is executed.
This is an entity lifecycle event.
public final string preRemove = 'preRemove'
The preRemove event occurs for a given entity before the respective EntityManager remove operation for that entity is executed.
This is an entity lifecycle event.
public final string preUpdate = 'preUpdate'
The preUpdate event occurs before the database update operations to entity data.
This is an entity lifecycle event.
public Events()
Container for all ORM events.
This class cannot be instantiated.