Business Components

Uses of Interface
oracle.jbo.server.TransactionPostListener

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

Uses of TransactionPostListener in oracle.jbo.server
 

Subinterfaces of TransactionPostListener in oracle.jbo.server
 interface Entity
          Defines the middle-tier representation of database rows.
 

Classes in oracle.jbo.server that implement TransactionPostListener
 class EntityImpl
          This class implements the middle-tier representations of database rows.
 class ViewObjectImpl
          The implementation of the ViewObject interface, the middle-tier class that manages database queries and the view rows that result from executing queries.
 

Methods in oracle.jbo.server with parameters of type TransactionPostListener
 void EntityImpl.addTransactionPostListener(TransactionPostListener listener)
          Adds a listener to the list of post operation listeners.
 void EntityImpl.addTransactionPostListenerNoCheck(TransactionPostListener listener)
          Internal: Applications should not use this method.
 void EntityImpl.removeTransactionPostListener(TransactionPostListener listener)
          Internal: Applications should not use this method.
 void NullDBTransactionImpl.addTransactionPostListener(TransactionPostListener listener)
          Implementation of the DBTransaction interface.
 void NullDBTransactionImpl.addTransactionPostListenerNoCheck(TransactionPostListener listener)
          Implementation of the DBTransaction interface.
 void NullDBTransactionImpl.removeTransactionPostListener(TransactionPostListener listener)
          Implementation of the DBTransaction interface.
 void DBTransactionImpl.addTransactionPostListener(TransactionPostListener listener)
          Adds a subscriber to the transaction's post-events list.
 void DBTransactionImpl.addTransactionPostListenerNoCheck(TransactionPostListener listener)
          Internal: Applications should not use this method.
 void DBTransactionImpl.removeTransactionPostListener(TransactionPostListener listener)
          Removes a subscriber from the transaction's post-events list.
 void DBTransaction.addTransactionPostListener(TransactionPostListener listener)
          Adds a listener to the transaction's list of post-phase event subscribers.
 void DBTransaction.addTransactionPostListenerNoCheck(TransactionPostListener listener)
          Adds a listener to the transaction's list of post-phase event subscribers, without checking whether the listener is already on the list.
 void DBTransaction.removeTransactionPostListener(TransactionPostListener listener)
          Removes a listener from the transaction's list of post-phase event subscribers.
 


Business Components