Class PostUpdateEvent

  • All Implemented Interfaces:
    IPortalEvent

    @StableMinor(version="17.0",
                 sinceVersion="4.2")
    public class PostUpdateEvent
    extends PersistenceEvent
    Event raised after the update of an entity in persistence.

    Note: A persistence event may have been generated during a JPA entity lifecycle callback. In such situations, JPA limitations (such as the application should not access EntityManager, other entities, or change relations) apply.

    Since:
    4.1.0
    Version:
    $Revision: 26587 $ $Date: 2024-08-26 21:09:17 -0300 (Mon, 26 Aug 2024) $
    • Constructor Detail

      • PostUpdateEvent

        public PostUpdateEvent​(SessionConfig sessionConfig,
                               java.lang.Class<?> entityClass,
                               java.lang.Object oldEntity,
                               java.lang.Object entity,
                               ITransaction transaction)
      • PostUpdateEvent

        public PostUpdateEvent​(SessionConfig sessionConfig,
                               java.lang.Class<?> entityClass,
                               java.util.List<?> oldEntities,
                               java.util.List<?> entities,
                               ITransaction transaction)
    • Method Detail

      • getOldEntities

        public java.util.List<?> getOldEntities()
        Returns the entity state before the update. Each entity in the list returned corresponds to the entity in the same index of the list returned by getEntities().

        Note that this information may not be available in the event, depending on who generated the event. In this case, this method will return null.

        Returns:
        the entity state before the update.
        Since:
        4.1.0
      • getEntities

        public java.util.List<?> getEntities()
        Description copied from class: PersistenceEvent
        Returns the entities affected by this persistence event.
        Overrides:
        getEntities in class PersistenceEvent
        Returns:
        the entities.