PSE 2000 Group 4

Uses of Class
jobmatch.data.ProviderAccountDO

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

Uses of ProviderAccountDO in jobmatch.business.provider.account
 

Constructors in jobmatch.business.provider.account with parameters of type ProviderAccountDO
ProviderAccount.ProviderAccount(ProviderAccountDO dataObject)
           
 

Uses of ProviderAccountDO in jobmatch.data
 

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

Methods in jobmatch.data that return ProviderAccountDO
 ProviderAccountDO ProviderAccountBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
static ProviderAccountDO ProviderAccountDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static ProviderAccountDO ProviderAccountDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a ProviderAccountDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static ProviderAccountDO ProviderAccountDO.createExisting(String handle)
          The createExisting method is used to create a ProviderAccountDO from a string handle.
protected static ProviderAccountDO ProviderAccountDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a ProviderAccountDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static ProviderAccountDO ProviderAccountDO.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 ProviderAccountDO ProviderAccountDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a ProviderAccountDO object by searching for it in the database using the ProviderAccountDO.PrimaryKey value in the passed RDBRow.
protected static ProviderAccountDO ProviderAccountDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a ProviderAccountDO object by searching for it in the database using the passed ProviderAccountDO.PrimaryKey.
static ProviderAccountDO ProviderAccountDO.createCopy(ProviderAccountDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static ProviderAccountDO ProviderAccountDO.createCopy(ProviderAccountDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 ProviderAccountDO[] ProviderAccountQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 ProviderAccountDO ProviderAccountQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 

Methods in jobmatch.data with parameters of type ProviderAccountDO
static ProviderAccountBDO ProviderAccountBDO.createExisting(ProviderAccountDO DO)
          The createExisting method is used to create a ProviderAccountBDO from a ProviderAccountDO that was returned by the ProviderAccountQuery class.
static ProviderAccountDO ProviderAccountDO.createCopy(ProviderAccountDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void ProviderAccountDO.makeIdentical(ProviderAccountDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 

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


PSE 2000 Group 4