Uses of Class
org.hibernate.ReplicationMode
-
Packages that use ReplicationMode Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.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 ReplicationMode in org.hibernate
Methods in org.hibernate that return ReplicationMode Modifier and Type Method Description static ReplicationMode
ReplicationMode. valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static ReplicationMode[]
ReplicationMode. values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate with parameters of type ReplicationMode Modifier and Type Method Description void
Session. replicate(Object object, ReplicationMode replicationMode)
Deprecated.With no real replacementvoid
Session. replicate(String entityName, Object object, ReplicationMode replicationMode)
Deprecated.With no real replacement -
Uses of ReplicationMode in org.hibernate.engine.spi
Fields in org.hibernate.engine.spi with type parameters of type ReplicationMode Modifier and Type Field Description static CascadingAction<ReplicationMode>
CascadingActions. REPLICATE
Methods in org.hibernate.engine.spi with parameters of type ReplicationMode Modifier and Type Method Description void
SessionDelegatorBaseImpl. replicate(Object object, ReplicationMode replicationMode)
void
SessionDelegatorBaseImpl. replicate(String entityName, Object object, ReplicationMode replicationMode)
void
SessionLazyDelegator. replicate(Object object, ReplicationMode replicationMode)
Deprecated.void
SessionLazyDelegator. replicate(String entityName, Object object, ReplicationMode replicationMode)
Deprecated. -
Uses of ReplicationMode in org.hibernate.event.internal
Methods in org.hibernate.event.internal that return types with arguments of type ReplicationMode Modifier and Type Method Description protected CascadingAction<ReplicationMode>
DefaultReplicateEventListener. getCascadeAction()
-
Uses of ReplicationMode in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return ReplicationMode Modifier and Type Method Description ReplicationMode
ReplicateEvent. getReplicationMode()
Methods in org.hibernate.event.spi with parameters of type ReplicationMode Modifier and Type Method Description void
ReplicateEvent. setReplicationMode(ReplicationMode replicationMode)
Constructors in org.hibernate.event.spi with parameters of type ReplicationMode Constructor Description ReplicateEvent(Object object, ReplicationMode replicationMode, EventSource source)
ReplicateEvent(String entityName, Object object, ReplicationMode replicationMode, EventSource source)
-
Uses of ReplicationMode in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type ReplicationMode Modifier and Type Method Description void
SessionImpl. replicate(Object obj, ReplicationMode replicationMode)
void
SessionImpl. replicate(String entityName, Object obj, ReplicationMode replicationMode)
-