Business Components

Uses of Class
oracle.jbo.server.TransactionEvent

Packages that use TransactionEvent
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of TransactionEvent in oracle.jbo.server
 

Methods in oracle.jbo.server with parameters of type TransactionEvent
 void EntityImpl.postChanges(TransactionEvent e)
           
 void EntityImpl.afterCommit(TransactionEvent e)
           
 void EntityImpl.afterRollback(TransactionEvent e)
           
 void EntityImpl.afterRemove(TransactionEvent e)
           
 void EntityImpl.beforeCommit(TransactionEvent e)
           
 void EntityImpl.beforeRollback(TransactionEvent e)
           
protected  void EntityImpl.doDML(int operation, TransactionEvent e)
          Performs INSERT/UPDATE/DELETE processing for the row.
protected  void EntityImpl.doDMLWithLOBs(int operation, TransactionEvent e)
           
 void TransactionPostListener.postChanges(TransactionEvent e)
          Notifies a listener to post any cached changes to the database.
 void OracleSQLBuilderImpl.doEntityDML(EntityImpl entityContext, int operation, TransactionEvent e)
           
protected  void DBTransactionImpl.postChanges(TransactionEvent te)
          Synchronizes all the changes in this transaction-cache with the database.
 void OLiteSQLBuilderImpl.doEntityDML(EntityImpl entityContext, int operation, TransactionEvent e)
           
 void ViewObjectImpl.afterCommit(TransactionEvent event)
          Handles events raised after a transaction has been committed.
 void ViewObjectImpl.afterRollback(TransactionEvent event)
          Handles events raised after a transaction has been rolled back.
 void ViewObjectImpl.afterRemove(TransactionEvent event)
          Handles events raised after rows have been removed.
 void ViewObjectImpl.beforeCommit(TransactionEvent e)
          Handles events raised before a transaction is committed.
 void ViewObjectImpl.beforeRollback(TransactionEvent e)
          Handles events raised before a transaction is rolled back.
 void ViewObjectImpl.postChanges(TransactionEvent e)
          This method is not implemented in this class.
 void SQLBuilder.doEntityDML(EntityImpl enrt, int operation, TransactionEvent e)
          Performs the appropriate SQL Data Manipulation Language (DML) operations on the database to reflect an update, delete or insert operation on an Entity Object.
 void TransactionListener.beforeCommit(TransactionEvent e)
          Called to report that a Commit operation is imminent.
 void TransactionListener.beforeRollback(TransactionEvent e)
          Called to report that a Rollback operation is imminent.
 void TransactionListener.afterCommit(TransactionEvent e)
          Called to report that a Commit operation has occurred.
 void TransactionListener.afterRollback(TransactionEvent e)
          Called to report that a Rollback operation has occurred.
 void TransactionListener.afterRemove(TransactionEvent e)
          A cleanup routine to be invoked by transaction manager when this transaction listener is removed from the manager's list.
 


Business Components