Uses of Class
org.hibernate.ReplicationMode

Packages that use ReplicationMode
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.event This package defines an event framework for Hibernate. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
 

Uses of ReplicationMode in org.hibernate
 

Fields in org.hibernate declared as ReplicationMode
static ReplicationMode ReplicationMode.EXCEPTION
          Throw an exception when a row already exists.
static ReplicationMode ReplicationMode.IGNORE
          Ignore replicated entities when a row already exists.
static ReplicationMode ReplicationMode.LATEST_VERSION
          When a row already exists, choose the latest version.
static ReplicationMode ReplicationMode.OVERWRITE
          Overwrite existing rows when a row already exists.
 

Methods in org.hibernate with parameters of type ReplicationMode
 void Session.replicate(Object object, ReplicationMode replicationMode)
          Persist the state of the given detached instance, reusing the current identifier value.
 void Session.replicate(String entityName, Object object, ReplicationMode replicationMode)
          Persist the state of the given detached instance, reusing the current identifier value.
 

Uses of ReplicationMode in org.hibernate.event
 

Methods in org.hibernate.event that return ReplicationMode
 ReplicationMode ReplicateEvent.getReplicationMode()
           
 

Methods in org.hibernate.event with parameters of type ReplicationMode
 void ReplicateEvent.setReplicationMode(ReplicationMode replicationMode)
           
 

Constructors in org.hibernate.event with parameters of type ReplicationMode
ReplicateEvent(Object object, ReplicationMode replicationMode, EventSource source)
           
ReplicateEvent(String entityName, Object object, ReplicationMode replicationMode, EventSource source)
           
 

Uses of ReplicationMode in org.hibernate.impl
 

Methods in org.hibernate.impl with parameters of type ReplicationMode
 void SessionImpl.replicate(Object obj, ReplicationMode replicationMode)
           
 void SessionImpl.replicate(String entityName, Object obj, ReplicationMode replicationMode)
           
 



Copyright © null-null Red Hat Middleware, LLC. All Rights Reserved