|
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.ProgrammingBDO
ProgrammingBDO contains the same set and get methods as the ProgrammingDO 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 ProgrammingDO |
DO
The ProgrammingDO object upon which the set and get methods operate. |
| Constructor Summary | |
ProgrammingBDO()
Constructor required by ProgrammingBDO.create methods. |
|
ProgrammingBDO(ProgrammingDO DO)
Constructor for use by classes derived from ProgrammingBDO. |
|
| Method Summary | |
void |
addProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo)
Add (set & commit) a ProgrammingCandidateBDO object whose ProgrammingCandidateDO refers to the DO held by this BDO. |
void |
addProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo,
jobmatch.data.DBTransaction tran)
Add (set & commit) a ProgrammingCandidateBDO object whose ProgrammingCandidateDO refers to the DO held by this BDO. |
void |
addProgrammingProfileBDO(ProgrammingProfileBDO rbdo)
Add (set & commit) a ProgrammingProfileBDO object whose ProgrammingProfileDO refers to the DO held by this BDO. |
void |
addProgrammingProfileBDO(ProgrammingProfileBDO rbdo,
jobmatch.data.DBTransaction tran)
Add (set & commit) a ProgrammingProfileBDO object whose ProgrammingProfileDO refers to the DO held by this BDO. |
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 ProgrammingBDO |
createExisting(ProgrammingDO DO)
The createExisting method is used to create a ProgrammingBDO
from a ProgrammingDO that was returned by
the ProgrammingQuery class. |
static ProgrammingBDO |
createVirgin()
Like the class ProgrammingDO,
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 ProgrammingBDO[] |
getBDOarray()
The getBDOarray method performs a database query to return an array of ProgrammingBDO objects
representing all the rows in the Programming table. |
String |
getDescription()
Get Description of the ProgrammingDO |
ProgrammingDO |
getDO()
Note: This method is intended for use only by other BDO classes. |
String |
getHandle()
The methods
getHandle
hasMatchingHandle
are used by Presentation Objects that need to populate
HTML select lists with ProgrammingBDO objects as options. |
ProgrammingCandidateBDO |
getProgrammingCandidateBDO()
Get the single ProgrammingCandidateBDO object holding a ProgrammingCandidateDO object that refers to the DO held by this BDO. |
ProgrammingCandidateBDO[] |
getProgrammingCandidateBDOArray()
Get array of ProgrammingCandidateBDO objects holding ProgrammingCandidateDO objects that refer to the DO held by this BDO. |
ProgrammingCandidateDO |
getProgrammingCandidateDO()
Get the single ProgrammingCandidateDO object that refers to the DO held by this BDO. |
ProgrammingCandidateDO[] |
getProgrammingCandidateDOArray()
Get array of ProgrammingCandidateDO objects that refer to the DO held by this BDO. |
ProgrammingProfileBDO |
getProgrammingProfileBDO()
Get the single ProgrammingProfileBDO object holding a ProgrammingProfileDO object that refers to the DO held by this BDO. |
ProgrammingProfileBDO[] |
getProgrammingProfileBDOArray()
Get array of ProgrammingProfileBDO objects holding ProgrammingProfileDO objects that refer to the DO held by this BDO. |
ProgrammingProfileDO |
getProgrammingProfileDO()
Get the single ProgrammingProfileDO object that refers to the DO held by this BDO. |
ProgrammingProfileDO[] |
getProgrammingProfileDOArray()
Get array of ProgrammingProfileDO objects that refer to the DO held by this BDO. |
boolean |
hasMatchingHandle(String handle)
|
protected void |
modifyDO(jobmatch.data.DBTransaction dbt,
boolean delete)
Modifies the DO within its table. |
void |
removeProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo)
Remove (delete) a ProgrammingCandidateBDO object whose ProgrammingCandidateDO refers to the DO held by this BDO. |
void |
removeProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo,
jobmatch.data.DBTransaction tran)
Remove (delete) a ProgrammingCandidateBDO object whose ProgrammingCandidateDO refers to the DO held by this BDO. |
void |
removeProgrammingProfileBDO(ProgrammingProfileBDO rbdo)
Remove (delete) a ProgrammingProfileBDO object whose ProgrammingProfileDO refers to the DO held by this BDO. |
void |
removeProgrammingProfileBDO(ProgrammingProfileBDO rbdo,
jobmatch.data.DBTransaction tran)
Remove (delete) a ProgrammingProfileBDO object whose ProgrammingProfileDO refers to the DO held by this BDO. |
void |
setDescription(String Description)
Set Description of the ProgrammingDO |
String |
toString()
for debugging |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
protected ProgrammingDO DO
| Constructor Detail |
public ProgrammingBDO(ProgrammingDO DO)
ProgrammingBDO.
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 ProgrammingBDO()
throws Exception
ProgrammingBDO.create methods.| Method Detail |
public ProgrammingDO getDO()
public static ProgrammingBDO createVirgin()
throws Exception
ProgrammingDO,
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 ProgrammingBDO createExisting(ProgrammingDO DO)
ProgrammingBDO
from a ProgrammingDO that was returned by
the ProgrammingQuery class.
public static ProgrammingBDO[] getBDOarray()
throws jobmatch.data.DataObjectException
ProgrammingBDO objects
representing all the rows in the Programming 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 ProgrammingDO 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 ProgrammingBDO 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 ProgrammingBDO object holds a reference to a ProgrammingDO object.
The id of this ProgrammingBDO is the id of its ProgrammingDO.
- 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 getDescription()
throws jobmatch.data.DataObjectException
public void setDescription(String Description)
throws jobmatch.data.DataObjectException
Description - of the ProgrammingDO
public ProgrammingCandidateDO[] getProgrammingCandidateDOArray()
throws jobmatch.data.DataObjectException,
jobmatch.data.QueryException
public ProgrammingCandidateDO getProgrammingCandidateDO()
throws jobmatch.data.DataObjectException,
jobmatch.data.NonUniqueQueryException,
jobmatch.data.QueryException
public ProgrammingCandidateBDO[] getProgrammingCandidateBDOArray()
throws jobmatch.data.DataObjectException,
jobmatch.data.QueryException
public ProgrammingCandidateBDO getProgrammingCandidateBDO()
throws jobmatch.data.DataObjectException,
jobmatch.data.NonUniqueQueryException,
jobmatch.data.QueryException
public void addProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
rbdo - ProgrammingCandidateBDO to be set to point to this BDO and committed.
public void addProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo,
jobmatch.data.DBTransaction tran)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
rbdo - ProgrammingCandidateBDO to be set to point to this BDO and committed.tran - The transaction to be used for the commit.
If null, a new transaction is created.
public void removeProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
r - ProgrammingCandidateBDO to be deleted.
public void removeProgrammingCandidateBDO(ProgrammingCandidateBDO rbdo,
jobmatch.data.DBTransaction tran)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
r - ProgrammingCandidateBDO to be deleted.tran - The transaction to be used for the commit.
If null, a new transaction is created.
public ProgrammingProfileDO[] getProgrammingProfileDOArray()
throws jobmatch.data.DataObjectException,
jobmatch.data.QueryException
public ProgrammingProfileDO getProgrammingProfileDO()
throws jobmatch.data.DataObjectException,
jobmatch.data.NonUniqueQueryException,
jobmatch.data.QueryException
public ProgrammingProfileBDO[] getProgrammingProfileBDOArray()
throws jobmatch.data.DataObjectException,
jobmatch.data.QueryException
public ProgrammingProfileBDO getProgrammingProfileBDO()
throws jobmatch.data.DataObjectException,
jobmatch.data.NonUniqueQueryException,
jobmatch.data.QueryException
public void addProgrammingProfileBDO(ProgrammingProfileBDO rbdo)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
rbdo - ProgrammingProfileBDO to be set to point to this BDO and committed.
public void addProgrammingProfileBDO(ProgrammingProfileBDO rbdo,
jobmatch.data.DBTransaction tran)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
rbdo - ProgrammingProfileBDO to be set to point to this BDO and committed.tran - The transaction to be used for the commit.
If null, a new transaction is created.
public void removeProgrammingProfileBDO(ProgrammingProfileBDO rbdo)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
r - ProgrammingProfileBDO to be deleted.
public void removeProgrammingProfileBDO(ProgrammingProfileBDO rbdo,
jobmatch.data.DBTransaction tran)
throws SQLException,
jobmatch.data.DatabaseManagerException,
jobmatch.data.DataObjectException,
jobmatch.data.RefAssertionException,
jobmatch.data.DBRowUpdateException,
jobmatch.data.QueryException
r - ProgrammingProfileBDO to be deleted.tran - The transaction to be used for the commit.
If null, a new transaction is created.
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 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 | |||||||||