| |
|
| java.lang.Object com.jcorporate.expresso.kernel.metadata.SchemaData
SchemaData | public class SchemaData (Code) | | Bean class that represents the metadata for a Schema. This object is normally
populated by the contents of an xml file, but it can be populated as needed
manually if so desired.
author: Michael Rimov version: $Revision: 1.5 $ on $Date: 2004/11/17 20:48:17 $ |
controllers | List controllers(Code) | | A list of controllers contained by this schema
|
dbobjects | List dbobjects(Code) | | A list of DBObjects contained in this schema.
|
jobs | List jobs(Code) | | A list of jobs contained by this schema
|
reports | List reports(Code) | | A list of reports contained by this schema
|
SchemaData | public SchemaData()(Code) | | Default constructor
|
addController | public void addController(ControllerData newObj)(Code) | | A ControllerData metadata to this schema
Parameters: newObj - the new object to add |
addDataObject | public void addDataObject(DBObjectData newObj)(Code) | | A DataObject metadata to this schem
Parameters: newObj - the new object to add |
addJob | public void addJob(JobData newObj)(Code) | | A JobData metadata to this schema
Parameters: newObj - the new object to add |
addReportObject | public void addReportObject(ReportData newObj)(Code) | | A DataObject metadata to this schema
Parameters: newObj - the new object to add |
getControllers | public List getControllers()(Code) | | Retrieve a readonly list of controllers for this schema
Unmodifiable java.util.List |
getDataObjects | public List getDataObjects()(Code) | | Retrieve a readonly list of DBObjects for this schema
Unmodifiable java.util.List |
getJobs | public List getJobs()(Code) | | Retrieve a readonly list of Jobs for this schema
Unmodifiable java.util.List |
getReports | public List getReports()(Code) | | Retrieve a readonly list of Reports for this schema
Unmodifiable java.util.List |
|
|
|