Business Components

oracle.jbo.server
Class DefaultTxnHandlerFactoryImpl

java.lang.Object
  |
  +--oracle.jbo.server.DefaultTxnHandlerFactoryImpl

public class DefaultTxnHandlerFactoryImpl
extends java.lang.Object
implements TransactionHandlerFactory

The default implementation of the TransactionHandlerFactory interface. Use to create "default" transaction handlers, which provide transaction handling when running under non-EJB platforms. Non-EJB platforms include LOCAL, 8i (Oracle8i), CORBA, and VB (Visibroker).

Since:
JDeveloper 3.0
See Also:
TransactionHandlerFactory, DefaultTxnHandlerImpl

Constructor Summary
DefaultTxnHandlerFactoryImpl()
           
 
Method Summary
 TransactionHandler createTransactionHandler()
          Uses the current database connection to create a transaction handler for a non-EJB platform.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultTxnHandlerFactoryImpl

public DefaultTxnHandlerFactoryImpl()
Method Detail

createTransactionHandler

public TransactionHandler createTransactionHandler()
Uses the current database connection to create a transaction handler for a non-EJB platform.

Specified by:
createTransactionHandler in interface TransactionHandlerFactory
Parameters:
c - the database connection object.
Returns:
a transaction handler object.

Business Components