PSE 2000 Group 4

Uses of Class
jobmatch.data.CandidateAccountDO

Packages that use CandidateAccountDO
jobmatch.business.provider.account   
jobmatch.data   
 

Uses of CandidateAccountDO in jobmatch.business.provider.account
 

Constructors in jobmatch.business.provider.account with parameters of type CandidateAccountDO
CandidateAccount.CandidateAccount(CandidateAccountDO dataObject)
           
 

Uses of CandidateAccountDO in jobmatch.data
 

Fields in jobmatch.data declared as CandidateAccountDO
protected  CandidateAccountDO CandidateAccountBDO.DO
          The CandidateAccountDO object upon which the set and get methods operate.
 

Methods in jobmatch.data that return CandidateAccountDO
 CandidateAccountDO CandidateAccountBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
 CandidateAccountDO[] CandidateBDO.getCandidateAccountDOArray()
          Get array of CandidateAccountDO objects that refer to the DO held by this BDO.
 CandidateAccountDO CandidateBDO.getCandidateAccountDO()
          Get the single CandidateAccountDO object that refers to the DO held by this BDO.
static CandidateAccountDO CandidateAccountDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static CandidateAccountDO CandidateAccountDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a CandidateAccountDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static CandidateAccountDO CandidateAccountDO.createExisting(String handle)
          The createExisting method is used to create a CandidateAccountDO from a string handle.
protected static CandidateAccountDO CandidateAccountDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a CandidateAccountDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static CandidateAccountDO CandidateAccountDO.createExisting(ResultSet rs)
          createExisting( ResultSet ) Factory method used to create an instance of this class to represent a Data Object already existing in the database.
protected static CandidateAccountDO CandidateAccountDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a CandidateAccountDO object by searching for it in the database using the CandidateAccountDO.PrimaryKey value in the passed RDBRow.
protected static CandidateAccountDO CandidateAccountDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a CandidateAccountDO object by searching for it in the database using the passed CandidateAccountDO.PrimaryKey.
static CandidateAccountDO CandidateAccountDO.createCopy(CandidateAccountDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static CandidateAccountDO CandidateAccountDO.createCopy(CandidateAccountDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 CandidateAccountDO[] CandidateAccountQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 CandidateAccountDO CandidateAccountQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 CandidateAccountDO[] CandidateDO.getCandidateAccountDOArray()
          Get array of CandidateAccountDO objects that refer to this DO.
 CandidateAccountDO CandidateDO.getCandidateAccountDO()
          Get the single CandidateAccountDO object that refers to this DO.
 

Methods in jobmatch.data with parameters of type CandidateAccountDO
static CandidateAccountBDO CandidateAccountBDO.createExisting(CandidateAccountDO DO)
          The createExisting method is used to create a CandidateAccountBDO from a CandidateAccountDO that was returned by the CandidateAccountQuery class.
static CandidateAccountDO CandidateAccountDO.createCopy(CandidateAccountDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void CandidateAccountDO.makeIdentical(CandidateAccountDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void CandidateDO.addCandidateAccountDO(CandidateAccountDO referrer)
          Add (set & commit) a CandidateAccountDO object that refers to this DO.
 void CandidateDO.addCandidateAccountDO(CandidateAccountDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a CandidateAccountDO object that refers to this DO.
 void CandidateDO.removeCandidateAccountDO(CandidateAccountDO referrer)
          Remove (delete) a CandidateAccountDO object that refers to this DO.
 void CandidateDO.removeCandidateAccountDO(CandidateAccountDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a CandidateAccountDO object that refers to this DO.
 

Constructors in jobmatch.data with parameters of type CandidateAccountDO
CandidateAccountBDO.CandidateAccountBDO(CandidateAccountDO DO)
          Constructor for use by classes derived from CandidateAccountBDO.
 


PSE 2000 Group 4