Uses of Interface
org.hibernate.event.spi.PersistContext
-
Packages that use PersistContext Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.event.internal This package defines a default set of event listeners that implement the default behaviors of Hibernate session operations.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate. -
-
Uses of PersistContext in org.hibernate.engine.spi
Fields in org.hibernate.engine.spi with type parameters of type PersistContext Modifier and Type Field Description static CascadingAction<PersistContext>CascadingActions. PERSISTstatic CascadingAction<PersistContext>CascadingActions. PERSIST_ON_FLUSHExecute persist during flush timestatic CascadingAction<PersistContext>CascadingActions. SAVE_UPDATEMethods in org.hibernate.engine.spi with parameters of type PersistContext Modifier and Type Method Description voidSessionDelegatorBaseImpl. persist(String entityName, Object object, PersistContext createdAlready)voidSessionImplementor. persist(String entityName, Object object, PersistContext createdAlready)Deprecated.OperationalContext should cover this overload I believevoidSessionDelegatorBaseImpl. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)voidSessionImplementor. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)Deprecated.OperationalContext should cover this overload I believe -
Uses of PersistContext in org.hibernate.event.internal
Methods in org.hibernate.event.internal that return PersistContext Modifier and Type Method Description protected PersistContextAbstractFlushingEventListener. getContext()Methods in org.hibernate.event.internal that return types with arguments of type PersistContext Modifier and Type Method Description protected CascadingAction<PersistContext>DefaultPersistEventListener. getCascadeAction()protected CascadingAction<PersistContext>DefaultPersistOnFlushEventListener. getCascadeAction()protected CascadingAction<PersistContext>DefaultSaveOrUpdateEventListener. getCascadeAction()protected CascadingAction<PersistContext>AbstractFlushingEventListener. getCascadingAction()Methods in org.hibernate.event.internal with parameters of type PersistContext Modifier and Type Method Description protected voidDefaultPersistEventListener. entityIsPersistent(PersistEvent event, PersistContext createCache)protected voidDefaultPersistEventListener. entityIsTransient(PersistEvent event, PersistContext createCache)Handle the given create event.voidDefaultPersistEventListener. onPersist(PersistEvent event, PersistContext createCache)Handle the given create event. -
Uses of PersistContext in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return PersistContext Modifier and Type Method Description static PersistContextPersistContext. create()Methods in org.hibernate.event.spi with parameters of type PersistContext Modifier and Type Method Description voidPersistEventListener. onPersist(PersistEvent event, PersistContext createdAlready)Handle the given create event.voidEventSource. persist(String entityName, Object object, PersistContext createdAlready)Cascade persist an entity instancevoidEventSource. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)Cascade persist an entity instance during the flush process -
Uses of PersistContext in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type PersistContext Modifier and Type Method Description voidSessionImpl. persist(String entityName, Object object, PersistContext copiedAlready)voidSessionImpl. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)
-