|
PSE 2000 Group 4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--jobmatch.data.CompanyAccountBDO
CompanyAccountBDO contains the same set and get methods as the CompanyAccountDO class. Business Object (BO) classes typically need these set and get methods. So by deriving a BO from a BDO, or by implementing a BO that contains a BDO, the developer of the BO is spared some work.
| Field Summary | |
protected CompanyAccountDO |
DO
The CompanyAccountDO object upon which the set and get methods operate. |
| Constructor Summary | |
CompanyAccountBDO()
Constructor required by CompanyAccountBDO.create methods. |
|
CompanyAccountBDO(CompanyAccountDO DO)
Constructor for use by classes derived from CompanyAccountBDO. |
|
| Method Summary | |
protected void |
afterAnySet()
|
protected void |
beforeAnyGet()
The developer of a Business Object that derives from this class can override the methods:
beforeAnyGet
beforeAnySet
afterAnySet
to handle any general assertions or cleanup needed
for get and set methods. |
protected void |
beforeAnySet()
|
void |
commit()
Inserts/Updates the DO into its table. |
void |
commit(jobmatch.data.DBTransaction dbt)
Inserts/Updates the DO into its table. |
static CompanyAccountBDO |
createExisting(CompanyAccountDO DO)
The createExisting method is used to create a CompanyAccountBDO
from a CompanyAccountDO that was returned by
the CompanyAccountQuery class. |
static CompanyAccountBDO |
createVirgin()
Like the class CompanyAccountDO,
this class acts as a factory. |
void |
delete()
Deletes the DO from its table. |
void |
delete(jobmatch.data.DBTransaction dbt)
Deletes the DO from its table. |
static CompanyAccountBDO[] |
getBDOarray()
The getBDOarray method performs a database query to return an array of CompanyAccountBDO objects
representing all the rows in the CompanyAccount table. |
CompanyDO |
getCompany()
Get Company of the CompanyAccountDO |
CompanyBDO |
getCompanyBDO()
Get BDO-wrapped Company of the CompanyAccountDO |
CompanyAccountDO |
getDO()
Note: This method is intended for use only by other BDO classes. |
String |
getEmail()
Get Email of the CompanyAccountDO |
String |
getHandle()
The methods
getHandle
hasMatchingHandle
are used by Presentation Objects that need to populate
HTML select lists with CompanyAccountBDO objects as options. |
String |
getLastHost()
Get LastHost of the CompanyAccountDO |
String |
getLastIP()
Get LastIP of the CompanyAccountDO |
Timestamp |
getLastLogin()
Get LastLogin of the CompanyAccountDO |
int |
getLoginReminder()
Get LoginReminder of the CompanyAccountDO |
String |
getPassphrase()
Get Passphrase of the CompanyAccountDO |
String |
getUsername()
Get Username of the CompanyAccountDO |
boolean |
hasMatchingHandle(String handle)
|
protected void |
modifyDO(jobmatch.data.DBTransaction dbt,
boolean delete)
Modifies the DO within its table. |
protected void |
okToCommitCompany(CompanyDO member)
A stub method for implementing pre-commit assertions for the Company data member. |
protected void |
okToDeleteCompany(CompanyDO member)
A stub method for implementing pre-delete assertions for the Company data member. |
void |
setCompany(CompanyBDO Company)
Set Company of the CompanyAccountDO |
void |
setCompany(CompanyDO Company)
Set Company of the CompanyAccountDO |
void |
setEmail(String Email)
Set Email of the CompanyAccountDO |
void |
setLastHost(String LastHost)
Set LastHost of the CompanyAccountDO |
void |
setLastIP(String LastIP)
Set LastIP of the CompanyAccountDO |
void |
setLastLogin(Timestamp LastLogin)
Set LastLogin of the CompanyAccountDO |
void |
setLoginReminder(int LoginReminder)
Set LoginReminder of the CompanyAccountDO |
void |
setPassphrase(String Passphrase)
Set Passphrase of the CompanyAccountDO |
void |
setUsername(String Username)
Set Username of the CompanyAccountDO |
String |
toString()
for debugging |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
protected CompanyAccountDO DO
| Constructor Detail |
public CompanyAccountBDO(CompanyAccountDO DO)
CompanyAccountBDO.
Example usage:
class CustomerBO extends CustomerBDO {
// a BDO class is commonly extended in order to implement:
public void beforeAnySet() throws Exception {
if ( CustomerDO should not be altered )
throw new ApplicationException( "ERROR" );
}
public CustomerBO( CustomerDO DO ) {
super( DO );
}
}
class SomePresentationLayerClass {
public CustomerBO findCustomer( String name ) {
CustomerQuery q = new CustomerQuery();
q.setQueryName( name );
CustomerDO DO = q.getNextDO();
// Here the CustomerBO ctor fires the CustomerBDO ctor.
return new CustomerBO( DO );
}
}
public CompanyAccountBDO()
throws Exception
CompanyAccountBDO.create methods.| Method Detail |
public CompanyAccountDO getDO()
public static CompanyAccountBDO createVirgin()
throws Exception
CompanyAccountDO,
this class acts as a factory.
Business Object (BO) classes typically need these set and get methods.
So by deriving a BO from a BDO, or by implementing a BO that
contains one or more BDOs, the developer of the BO is spared some work.public static CompanyAccountBDO createExisting(CompanyAccountDO DO)
CompanyAccountBDO
from a CompanyAccountDO that was returned by
the CompanyAccountQuery class.
public static CompanyAccountBDO[] getBDOarray()
throws jobmatch.data.DataObjectException
CompanyAccountBDO objects
representing all the rows in the CompanyAccount table.
This method is a minimal example of using a Query class.
To restrict the set of objects returned, you could
invoke query.setXxx(), where Xxx
is an Attribute of CompanyAccountDO which was
marked as "Can be queried" in the DODS Attribute Editor.protected void beforeAnyGet()
beforeAnyGet
beforeAnySet
afterAnySet
to handle any general assertions or cleanup needed
for get and set methods.
protected void beforeAnySet()
throws Exception
protected void afterAnySet()
public String getHandle()
throws jobmatch.data.DatabaseManagerException
getHandle
hasMatchingHandle
are used by Presentation Objects that need to populate
HTML select lists with CompanyAccountBDO objects as options.
The getHandle() method is used
to set the value for each option,
and the hasMatchingHandle()
methods are used to lookup the Data Object when the selection has
been made.
This CompanyAccountBDO object holds a reference to a CompanyAccountDO object.
The id of this CompanyAccountBDO is the id of its CompanyAccountDO.
- Returns:
- id of this BDO as a string
If an object id can't be allocated for this object.
- Throws:
- jobmatch.data.DatabaseManagerException - If a connection to the database cannot be established, etc.
public boolean hasMatchingHandle(String handle)
handle - String representation of the id for this BDOgetHandlepublic String toString()
public String getUsername()
throws jobmatch.data.DataObjectException
public void setUsername(String Username)
throws jobmatch.data.DataObjectException
Username - of the CompanyAccountDO
public String getEmail()
throws jobmatch.data.DataObjectException
public void setEmail(String Email)
throws jobmatch.data.DataObjectException
Email - of the CompanyAccountDO
public Timestamp getLastLogin()
throws jobmatch.data.DataObjectException
public void setLastLogin(Timestamp LastLogin)
throws jobmatch.data.DataObjectException
LastLogin - of the CompanyAccountDO
public int getLoginReminder()
throws jobmatch.data.DataObjectException
public void setLoginReminder(int LoginReminder)
throws jobmatch.data.DataObjectException
LoginReminder - of the CompanyAccountDO
public String getPassphrase()
throws jobmatch.data.DataObjectException
public void setPassphrase(String Passphrase)
throws jobmatch.data.DataObjectException
Passphrase - of the CompanyAccountDO
public String getLastIP()
throws jobmatch.data.DataObjectException
public void setLastIP(String LastIP)
throws jobmatch.data.DataObjectException
LastIP - of the CompanyAccountDO
public String getLastHost()
throws jobmatch.data.DataObjectException
public void setLastHost(String LastHost)
throws jobmatch.data.DataObjectException
LastHost - of the CompanyAccountDO
public CompanyDO getCompany()
throws jobmatch.data.DataObjectException
public void setCompany(CompanyDO Company)
throws jobmatch.data.DataObjectException
Company - of the CompanyAccountDO
public CompanyBDO getCompanyBDO()
throws jobmatch.data.DataObjectException
public void setCompany(CompanyBDO Company)
throws jobmatch.data.DataObjectException
BDO-wrapped - Company of the CompanyAccountDO
public void commit()
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
public void commit(jobmatch.data.DBTransaction dbt)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
dbt - The transaction object to use for this operation.
public void delete()
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
public void delete(jobmatch.data.DBTransaction dbt)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
dbt - The transaction object to use for this operation.
protected void okToCommitCompany(CompanyDO member)
throws jobmatch.data.RefAssertionException
protected void okToDeleteCompany(CompanyDO member)
throws jobmatch.data.RefAssertionException
protected void modifyDO(jobmatch.data.DBTransaction dbt,
boolean delete)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
dbt - The transaction object to use for this operation.delete - True if doing a delete, otherwise doing insert/update.
|
PSE 2000 Group 4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||