Business Components

Uses of Interface
oracle.jbo.Transaction

Packages that use Transaction
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.common.ws   
oracle.jbo.domain   
oracle.jbo.server Contains the implementation of middle tier components. 
oracle.jbo.server.ejb   
oracle.jbo.uicli.binding Contains JClient classes that handle interaction with BC4J objects for various JClient bindings. 
oracle.jbo.uicli.jui Contains JClient classes that implement binding of Swing controls with BC4J ViewObject, Attributes or Rows. 
 

Uses of Transaction in oracle.jbo
 

Methods in oracle.jbo that return Transaction
 Transaction ApplicationModule.getTransaction()
          Gets this Application Module's database transaction.
 

Constructors in oracle.jbo with parameters of type Transaction
ViewClearCacheEvent(Transaction source, ViewObject[] vos)
          Creates a View Object clear-cache event.
TransactionStateEvent(Transaction source, int eventType)
          Creates a transacation state event.
TransactionStateEvent(Transaction source, int eventType, boolean clearCache)
          Creates a transacation state event.
 

Uses of Transaction in oracle.jbo.common.ws
 

Methods in oracle.jbo.common.ws that return Transaction
 Transaction WSApplicationModuleImpl.getTransaction()
           
 

Uses of Transaction in oracle.jbo.domain
 

Fields in oracle.jbo.domain declared as Transaction
protected  Transaction Struct.mTxn
           
 

Methods in oracle.jbo.domain with parameters of type Transaction
 void DomainInterface.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void DateDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Deprecated.  
 void SQLValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void BlobDomainInterface.loadFromDatabase(Transaction transaction)
           
 void BlobDomainInterface.saveToDatabase(Transaction transaction)
           
 void BlobDomainInterface.saveToDatabase(Transaction transaction, java.lang.Object emptySQLObject)
          Internal: Applications should not use this method.
 void NullValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 void Number.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void Struct.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void Struct.loadFromDatabase(Transaction)
           
 void Struct.saveToDatabase(Transaction)
           
 void Struct.saveToDatabase(Transaction, java.lang.Object)
           
 void Array.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void Array.loadFromDatabase(Transaction)
           
 void Array.saveToDatabase(Transaction)
           
 void Array.saveToDatabase(Transaction, java.lang.Object)
           
 

Uses of Transaction in oracle.jbo.server
 

Subinterfaces of Transaction in oracle.jbo.server
 interface DBTransaction
          Interface representing the server side of database connections and transactions.
 

Classes in oracle.jbo.server that implement Transaction
 class DBTransactionImpl
          The superclass of classes representing connections of middle-tier objects to databases.
 class DBTransactionImpl2
           Implementation of DBTransaction interface for representing both "connected" and "not connected" state.
 class NullDBTransactionImpl
          Deprecated. Since Jdeveloper 9.0.3. No replacement.
 

Methods in oracle.jbo.server that return Transaction
 Transaction ApplicationModuleImpl.getTransaction()
          Returns the transaction information.
 

Methods in oracle.jbo.server with parameters of type Transaction
 java.lang.Object BaseSQLBuilderImpl.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
           
 java.lang.Object OracleSQLBuilderImpl.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
           
 java.lang.Object AttributeDefImpl.loadFromStatement(java.sql.PreparedStatement cs, int index, Transaction trans)
          Internal: Applications should not use this method.
 java.lang.Object SQLBuilder.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
          Loads an object from a result set.
 void SQLValueImpl.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void SequenceImpl.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 

Uses of Transaction in oracle.jbo.server.ejb
 

Methods in oracle.jbo.server.ejb that return Transaction
 Transaction LocalApplicationModuleImpl.getTransaction()
           
 

Uses of Transaction in oracle.jbo.uicli.binding
 

Methods in oracle.jbo.uicli.binding that return Transaction
 Transaction JUControlBinding.getTransaction()
          Returns the Transaction object for the current BC4J session.
 

Methods in oracle.jbo.uicli.binding with parameters of type Transaction
protected abstract  void JUFormBinding.callBeforeSaveTransaction(Transaction txn)
          Invoked before the ensuing transaction's commit method is invoked by the framework.
 

Uses of Transaction in oracle.jbo.uicli.jui
 

Methods in oracle.jbo.uicli.jui that return Transaction
 Transaction JUPanelValidationEvent.getTransaction()
           
 

Methods in oracle.jbo.uicli.jui with parameters of type Transaction
protected  void JUPanelBinding.callBeforeSaveTransaction(Transaction txn)
          Forces the current control to stop its editing mode (if used, like in JTable).
 

Constructors in oracle.jbo.uicli.jui with parameters of type Transaction
JUPanelValidationEvent(JUFormBinding source, Transaction txn)
           
 


Business Components