Package lumis.portal.event.persistence
Class PreAddEvent
- java.lang.Object
-
- lumis.portal.event.AbstractPortalEvent
-
- lumis.portal.event.AbstractTransactionalPortalEvent
-
- lumis.portal.event.persistence.PersistenceEvent
-
- lumis.portal.event.persistence.PreAddEvent
-
- All Implemented Interfaces:
IPortalEvent
@StableMinor(version="14.0", sinceVersion="4.2") public class PreAddEvent extends PersistenceEvent
Event raised before the add of an entity to 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: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Constructor Summary
Constructors Constructor Description PreAddEvent(SessionConfig sessionConfig, Class<?> entityClass, Object entity, ITransaction transaction)
PreAddEvent(SessionConfig sessionConfig, Class<?> entityClass, Collection<?> entities, ITransaction transaction)
-
Method Summary
-
Methods inherited from class lumis.portal.event.persistence.PersistenceEvent
getEntities, isBefore
-
Methods inherited from class lumis.portal.event.AbstractTransactionalPortalEvent
getSessionConfig, getTransaction
-
Methods inherited from class lumis.portal.event.AbstractPortalEvent
getEventGroups, getOperationType, setEventGroups, setOperationType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface lumis.portal.event.IPortalEvent
toString
-
-
-
-
Constructor Detail
-
PreAddEvent
public PreAddEvent(SessionConfig sessionConfig, Class<?> entityClass, Object entity, ITransaction transaction)
-
PreAddEvent
public PreAddEvent(SessionConfig sessionConfig, Class<?> entityClass, Collection<?> entities, ITransaction transaction)
-
-