Package org.hibernate.event

Examples of org.hibernate.event.ReplicateEvent



  // replicate() operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public void replicate(Object obj, ReplicationMode replicationMode) throws HibernateException {
    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }
View Full Code Here


    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }

  public void replicate(String entityName, Object obj, ReplicationMode replicationMode)
  throws HibernateException {
    fireReplicate( new ReplicateEvent(entityName, obj, replicationMode, this) );
  }
View Full Code Here


  // replicate() operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public void replicate(Object obj, ReplicationMode replicationMode) throws HibernateException {
    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }
View Full Code Here

    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }

  public void replicate(String entityName, Object obj, ReplicationMode replicationMode)
  throws HibernateException {
    fireReplicate( new ReplicateEvent(entityName, obj, replicationMode, this) );
  }
View Full Code Here


  // replicate() operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public void replicate(Object obj, ReplicationMode replicationMode) throws HibernateException {
    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }
View Full Code Here

    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }

  public void replicate(String entityName, Object obj, ReplicationMode replicationMode)
  throws HibernateException {
    fireReplicate( new ReplicateEvent(entityName, obj, replicationMode, this) );
  }
View Full Code Here


  // replicate() operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public void replicate(Object obj, ReplicationMode replicationMode) throws HibernateException {
    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }
View Full Code Here

    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }

  public void replicate(String entityName, Object obj, ReplicationMode replicationMode)
  throws HibernateException {
    fireReplicate( new ReplicateEvent(entityName, obj, replicationMode, this) );
  }
View Full Code Here


  // replicate() operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public void replicate(Object obj, ReplicationMode replicationMode) throws HibernateException {
    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }
View Full Code Here

    fireReplicate( new ReplicateEvent(obj, replicationMode, this) );
  }

  public void replicate(String entityName, Object obj, ReplicationMode replicationMode)
  throws HibernateException {
    fireReplicate( new ReplicateEvent(entityName, obj, replicationMode, this) );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.event.ReplicateEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.