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)
          Initiates a post operation for this Entity Object.
 void EntityImpl.afterCommit(TransactionEvent e)
           
 void EntityImpl.afterRollback(TransactionEvent e)
          Internal: Applications should not call this method.
 void EntityImpl.afterRemove(TransactionEvent e)
          A cleanup routine to be invoked by transaction manager when this transaction listener is removed from the manager's list.
 void EntityImpl.beforeCommit(TransactionEvent e)
          Polls transaction listeners before a commit operation.
 void EntityImpl.beforeRollback(TransactionEvent e)
          Polls transaction listeners before a rollback operation.
protected  void EntityImpl.doDML(int operation, TransactionEvent e)
          Performs INSERT/UPDATE/DELETE processing for the row.
protected  void EntityImpl.doDMLWithLOBs(int operation, TransactionEvent e)
          Performs INSERT/UPDATE/DELETE processing for Entity Objects that contain LOBs.
 void TransactionPostListener.postChanges(TransactionEvent e)
          Notifies a listener to post any cached changes to the database.
 void OLiteSQLBuilderImpl.doEntityDML(EntityImpl entityContext, int operation, TransactionEvent e)
           
 void OracleSQLBuilderImpl.doEntityDML(EntityImpl entityContext, int operation, TransactionEvent e)
           
protected  void DBTransactionImpl.postChanges(TransactionEvent te)
          Internal: Applications should not use this method.
 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 OdbcSQLBuilderImpl.doEntityDML(EntityImpl entityContext, int operation, TransactionEvent e)
           
 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