Business Components

Uses of Class
oracle.jbo.Key

Packages that use Key
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.common Contains the implementation of components shared by thin clients and the middle tier. 
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of Key in oracle.jbo
 

Methods in oracle.jbo that return Key
 Key Row.getKey()
          Gets the row's key.
 Key DeadEntityAccessException.getKey()
           
 Key RowInconsistentException.getKey()
          Returns the key of the offending row.
 

Methods in oracle.jbo with parameters of type Key
 Row RowIterator.getRow(Key key)
          Accesses a row through a unique key.
 Row[] RowIterator.findByKey(Key key, int maxNumOfRows)
          Finds and returns view rows that match the specified key.
 

Constructors in oracle.jbo with parameters of type Key
RowValException.RowValException(java.lang.Class resBundleClass, java.lang.String errorCode, java.lang.String objName, Key key)
          Creates an exception to be localized using a given message bundle and error code.
RowValException.RowValException(java.lang.Class resBundleClass, java.lang.String errorCode, java.lang.String objName, Key key, java.lang.String methodName)
          Creates an exception to be localized using a given message bundle and error code.
TooManyObjectsException.TooManyObjectsException(Key primaryKey)
          Constructs a new instance.
DeadEntityAccessException.DeadEntityAccessException(java.lang.String objName, Key key)
          Creates an exception to be localized using CSMessageBundle and error code EXC_DEAD_ENTITY_ACCESS.
InvalidOwnerException.InvalidOwnerException(java.lang.Class resBundleClass, java.lang.String errorCode, java.lang.String objName, Key key)
          Creates a localizable exception.
InvalidOwnerException.InvalidOwnerException(java.lang.String msg, java.lang.String errorCode, java.lang.String objName, Key key)
          Creates a non-localizable exception.
RowInconsistentException.RowInconsistentException(Key key)
          Constructs a new instance.
RowNotFoundException.RowNotFoundException(boolean entityRow, java.lang.String objName, Key key)
          Constructs a new instance.
 

Uses of Key in oracle.jbo.common
 

Methods in oracle.jbo.common that return Key
 Key PiggybackKeyEntry.getKey()
           
 

Constructors in oracle.jbo.common with parameters of type Key
PiggybackKeyEntry.PiggybackKeyEntry(Key key)
           
 

Uses of Key in oracle.jbo.server
 

Methods in oracle.jbo.server that return Key
abstract  Key RowImpl.getKey()
          Gets the identifier object for this row.
 Key EntityImpl.getPrimaryKey()
          Gets the primay key for this Entity Object's row.
 Key EntityImpl.getKey()
          Gets the Entity Object's Primary Key.
 Key Entity.getPrimaryKey()
          Gets the primay key for this Entity Object's row.
 Key ViewRowImpl.getKey()
          Returns the identifier object for this row.
 Key EntityDefImpl.createKey(AttributeList al)
          Given a set of name-value pairs, creates a Primary key object for this entity.
 

Methods in oracle.jbo.server with parameters of type Key
 Row ViewRowSetIteratorImpl.getRow(Key key)
          Returns the first row whose key matches key.
 Row[] ViewRowSetIteratorImpl.findByKey(Key key, int maxNumOfRows)
          Finds and returns view rows that match the specified key.
 Row ViewRowSetImpl.getRow(Key key)
          Returns the first row whose key matches key.
 Row[] ViewRowSetImpl.findByKey(Key key, int maxNumOfRows)
          Finds and returns view rows that match the key specified in key.
 EntityImpl NullDBTransactionImpl.findByPrimaryKey(EntityDefImpl entityDef, Key key)
          Implementation of the DBTransaction interface.
 EntityImpl NullDBTransactionImpl.findByPrimaryKey(java.lang.String entityDefName, Key key)
          Implementation of the DBTransaction interface.
 EntityImpl DBTransactionImpl.findByPrimaryKey(EntityDefImpl entityDef, Key key)
          Finds an Entity Object in this transaction given a Primary Key.
 EntityImpl DBTransactionImpl.findByPrimaryKey(java.lang.String entityDefName, Key key)
          Finds an Entity Object in this transaction given a Primary Key.
 EntityImpl DBTransaction.findByPrimaryKey(EntityDefImpl entityDef, Key key)
          Finds an Entity Object in this transaction given a Primary Key.
 EntityImpl DBTransaction.findByPrimaryKey(java.lang.String entityDefName, Key key)
          Finds an Entity Object in this transaction given a Primary Key.
 Row ViewObjectImpl.getRow(Key key)
          Returns the first row matching a given key.
 Row[] ViewObjectImpl.findByKey(Key key, int maxNumOfRows)
          Creates an array of rows matching a given key.
 EntityImpl EntityDefImpl.findByPrimaryKey(DBTransaction txn, Key key)
          Finds an Entity Object given a Primary Key.
 


Business Components