All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.ejb.HibernateEntityManagerImplementor Maven / Gradle / Ivy

//$Id: HibernateEntityManagerImplementor.java 11282 2007-03-14 22:05:59Z epbernard $
package org.hibernate.ejb;

import javax.persistence.PersistenceException;

import org.hibernate.HibernateException;
import org.hibernate.StaleStateException;

/**
 * @author Emmanuel Bernard
 */
public interface HibernateEntityManagerImplementor extends HibernateEntityManager {
	boolean isTransactionInProgress();

	public void throwPersistenceException(PersistenceException e);

	public void throwPersistenceException(HibernateException e);

	public PersistenceException wrapStaleStateException(StaleStateException e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy