Business Components

Uses of Class
oracle.jbo.server.AttributeDefImpl

Packages that use AttributeDefImpl
oracle.jbo.server Contains the implementation of middle tier components. 
oracle.jbo.server.rules Contains sample validation beans. 
 

Uses of AttributeDefImpl in oracle.jbo.server
 

Fields in oracle.jbo.server declared as AttributeDefImpl
protected  AttributeDefImpl[] EntityAssociation.mBindVars
          The list of AttributeDefImpls as bind variables on one end.
protected  AttributeDefImpl[] EntityAssociation.mOtherBindVars
          The list of bind variable AttributeDefImpls on one end.
protected  AttributeDefImpl[] EntityDefImpl.mPrimaryKeys
          List of attributes that make the primary key
protected  AttributeDefImpl EntityDefImpl.mOIDAttribute
          If entity is a OIDObject
 

Methods in oracle.jbo.server that return AttributeDefImpl
 AttributeDefImpl[] EntityAssociation.getAttributeDefImpls()
          Gets the attributes of the source of the association.
 AttributeDefImpl[] EntityAssociation.getOtherAttributeDefImpls()
          Gets the attributes of the destination of the association.
 AttributeDefImpl[] EntityAssociation.getAttributeDefImplsByEndName(java.lang.String endName)
          Gets the attribute definitions of one end of the association
 AttributeDefImpl[] EntityAssociation.getBindVariables()
          Gets the bind variables for one end of the association.
 AttributeDefImpl[] EntityAssociation.getOtherBindVariables()
          Gets the bind variables for the other end of the association.
 AttributeDefImpl[] ViewObjectImpl.getPrimaryKeys()
          Constructs an array of entity attribute definitions of the primary keys of the View Object's Entity Objects.
 AttributeDefImpl EntityDefImpl.getAttributeDefImpl(java.lang.String attrName)
          Gets the named attribute definition.
 AttributeDefImpl EntityDefImpl.getAttributeDefImpl(int index)
          Gets an attribute definition by column position.
protected  AttributeDefImpl EntityDefImpl.getAttributeDefImplByColumnName(java.lang.String colName)
          Gets the attribute definition by column name.
protected  AttributeDefImpl[] EntityDefImpl.getAttributeDefImpls()
          Get the AttributeDefImpls.
protected  AttributeDefImpl[] EntityDefImpl.getPrimaryKeys()
          Get the primary key attributes.
protected  AttributeDefImpl EntityDefImpl.getOIDAttribute()
          returns the OID Attribute
protected  AttributeDefImpl[] EntityDefImpl.getRetrievedOnInsertAttributes()
          Returns a list of retrieved on Insert Attributes, Primary keys are excluded
protected  AttributeDefImpl[] EntityDefImpl.getRetrievedOnUpdateAttributes()
          Return a list of retrievedOnUpdate attributes, Primary keys are excluded.
protected  AttributeDefImpl[] EntityDefImpl.getRetrievedOnInsertPrimaryKeys()
           
protected  AttributeDefImpl[] EntityDefImpl.getRetrievedOnUpdatePrimaryKeys()
           
protected  AttributeDefImpl EntityDefImpl.getChangeIndicatorColumn()
          Get the Change Indicator column for the Source.
 

Methods in oracle.jbo.server with parameters of type AttributeDefImpl
 void EntityAssociation.setBindVariables(AttributeDefImpl[] vars)
          Sets the bind variables for one end of the association.
 void EntityAssociation.setOtherBindVariables(AttributeDefImpl[] vars)
          Sets the bind variables for the other end of the association.
protected  java.lang.Object EntityImpl.getAttributeValue(AttributeDefImpl attr)
          Internal Applications should not use this method.
 java.lang.Object[] OracleSQLBuilderImpl.doLoadBulkFromResultSet(AttributeDefImpl[] attrDefs, int attrIndex, java.sql.ResultSet rs, int index, DBTransactionImpl trans)
           
protected  java.lang.StringBuffer OracleSQLBuilderImpl.buildUpdateStatement(EntityImpl entityContext, java.lang.String sinkName, java.lang.String sinkAlias, AttributeDefImpl[] cols, AttributeDefImpl[] keyCols, AttributeDefImpl[] retrCols, AttributeDefImpl[] retrKeyCols)
          DOCTD: Method declaration TODO: KM _ don't like the fact that this requires an entitydef
protected  void OracleSQLBuilderImpl.buildWhereClause(EntityImpl entityContext, java.lang.StringBuffer buffer, AttributeDefImpl[] keyCols, java.lang.Object rowid)
          Construct a SQL WHERE clause for the Entity into the designated Buffer, based upon the Source Columns.
protected  java.lang.StringBuffer OracleSQLBuilderImpl.buildInsertStatement(EntityImpl entityContext, java.lang.String sinkName, java.lang.String sinkAlias, AttributeDefImpl[] cols, AttributeDefImpl[] keyCols, AttributeDefImpl[] retrCols, AttributeDefImpl[] retrKeyCols)
          Construct a SQL INSERT statement
protected  java.lang.StringBuffer OracleSQLBuilderImpl.buildDeleteStatement(EntityImpl entityContext, java.lang.String sinkName, java.lang.String sinkAlias, AttributeDefImpl[] keyCols)
          Construct a SQL INSERT statement
protected  void OracleSQLBuilderImpl.buildSelectString(java.lang.StringBuffer buffer, java.lang.String sourceName, java.lang.String sourceAlias, AttributeDefImpl[] attrs, boolean withIntoClause, int bindingStyle)
          Construct a SQL SELECT statement for the Entity into the designated Buffer.
 java.lang.Object[] OLiteSQLBuilderImpl.doLoadBulkFromResultSet(AttributeDefImpl[] attrDefs, int attrIndex, java.sql.ResultSet rs, int index, DBTransactionImpl trans)
           
protected  java.lang.StringBuffer OLiteSQLBuilderImpl.buildUpdateStatement(EntityImpl entityContext, java.lang.String sinkName, AttributeDefImpl[] cols, AttributeDefImpl[] keyCols, AttributeDefImpl[] retrCols, AttributeDefImpl[] retrKeyCols)
          DOCTD: Method declaration TODO: KM _ don't like the fact that this requires an entitydef
protected  void OLiteSQLBuilderImpl.buildWhereClause(EntityImpl entityContext, java.lang.StringBuffer buffer, AttributeDefImpl[] keyCols, java.lang.Object rowid)
          Construct a SQL WHERE clause for the Entity into the designated Buffer, based upon the Source Columns.
protected  java.lang.StringBuffer OLiteSQLBuilderImpl.buildInsertStatement(EntityImpl entityContext, java.lang.String sinkName, AttributeDefImpl[] cols, AttributeDefImpl[] keyCols, AttributeDefImpl[] retrCols, AttributeDefImpl[] retrKeyCols)
          Construct a SQL INSERT statement
protected  java.lang.StringBuffer OLiteSQLBuilderImpl.buildDeleteStatement(EntityImpl entityContext, java.lang.String sinkName, AttributeDefImpl[] keyCols)
          Construct a SQL INSERT statement
protected  void OLiteSQLBuilderImpl.buildSelectString(java.lang.StringBuffer buffer, java.lang.String sourceName, AttributeDefImpl[] attrs, boolean withIntoClause)
          Construct a SQL SELECT statement for the Entity into the designated Buffer.
 java.lang.Object[] SQLBuilder.doLoadBulkFromResultSet(AttributeDefImpl[] attrs, int attrIndex, java.sql.ResultSet rs, int rsIndex, DBTransactionImpl trans)
          Loads an array of objects from a result set.
 

Uses of AttributeDefImpl in oracle.jbo.server.rules
 

Methods in oracle.jbo.server.rules with parameters of type AttributeDefImpl
 void JboBaseValidator.setValidatingAttribute(AttributeDefImpl attr)
          Sets the validating attribute.
 


Business Components