Package com.atomikos.icatch.jta.hibernate3

Source Code of com.atomikos.icatch.jta.hibernate3.TransactionManagerLookup

//$Id: TransactionManagerLookup.java,v 1.1 2006/09/22 08:38:17 guy Exp $
//$Log: TransactionManagerLookup.java,v $
//Revision 1.1  2006/09/22 08:38:17  guy
//ADDED 1006
//
//Revision 1.1  2006/09/21 15:21:12  guy
//ADDED 1004
//
//Revision 1.1.1.1  2006/04/29 08:55:44  guy
//Initial import.
//
//Revision 1.1.1.1  2006/03/29 13:21:37  guy
//Imported.
//
//Revision 1.1.1.1  2006/03/23 16:25:33  guy
//Imported.
//
//Revision 1.1.1.1  2006/03/22 13:47:01  guy
//Import.
//
//Revision 1.1.1.1  2006/03/09 14:59:30  guy
//Imported 3.0 development into CVS repository.
//
//Revision 1.1  2005/05/14 13:43:47  guy
//Added hibernate integration package.
//

             
/*
* Copyright 2000-2008, Atomikos (http://www.atomikos.com)
*
* This code ("Atomikos TransactionsEssentials"), by itself,
* is being distributed under the
* Apache License, Version 2.0 ("License"), a copy of which may be found at
* http://www.atomikos.com/licenses/apache-license-2.0.txt .
* You may not use this file except in compliance with the License.
*            
* While the License grants certain patent license rights,
* those patent license rights only extend to the use of
* Atomikos TransactionsEssentials by itself.
*            
* This code (Atomikos TransactionsEssentials) contains certain interfaces
* in package (namespace) com.atomikos.icatch
* (including com.atomikos.icatch.Participant) which, if implemented, may
* infringe one or more patents held by Atomikos. 
* It should be appreciated that you may NOT implement such interfaces;
* licensing to implement these interfaces must be obtained separately from Atomikos.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package com.atomikos.icatch.jta.hibernate3;

import java.util.Properties;

import javax.transaction.Transaction;
import javax.transaction.TransactionManager;

import org.hibernate.HibernateException;

import com.atomikos.icatch.jta.UserTransactionManager;

/**
*
*
*
* This class is provided for Hibernate3 integration.
* To use Atomikos as the Hibernate JTA transaction manager,
* specify this class as the value of the
* <b>hibernate.transaction.manager_lookup_class</b> of the
* hibernate configuration properties.
*
*/
public class TransactionManagerLookup implements org.hibernate.transaction.TransactionManagerLookup
{

  private UserTransactionManager utm;
 
  public TransactionManagerLookup()
  {
    utm = new UserTransactionManager();
  }
 


    public TransactionManager getTransactionManager(Properties props) throws HibernateException
    {
        return utm;
    }

    public String getUserTransactionName()
    {
        return null;
    }


    // new in Hibernate 3.3
  public Object getTransactionIdentifier(Transaction transaction)
  {
    return transaction;
  }

}
TOP

Related Classes of com.atomikos.icatch.jta.hibernate3.TransactionManagerLookup

TOP
Copyright © 2018 www.massapi.com. 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.