org.hibernate.transaction.BESTransactionManagerLookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: BESTransactionManagerLookup.java 4388 2004-08-20 07:44:37Z oneovthafew $
package org.hibernate.transaction;
/**
* A TransactionManager lookup strategy for Borland ES.
* @author Etienne Hardy
*/
public final class BESTransactionManagerLookup extends JNDITransactionManagerLookup {
protected String getName() {
return "java:pm/TransactionManager";
}
public String getUserTransactionName() {
return "java:comp/UserTransaction";
}
}