Package com.redwood.scheduler.api.model
Interface Partition
- 
- All Superinterfaces:
- BusinessKeyObject,- NamedRootObject,- NamedRootObjectComp,- PartitionComp,- Readable,- Root,- SchedulerEntity,- SchedulerEntityComp
 
 public interface Partition extends PartitionComp, NamedRootObject, BusinessKeyObject, Readable Partitions separate their contained objects according to security and visibility characteristics. Most objects defined in the repository are part of exactly one partition. There are two forms of partitions: private and public. There can be an unlimited number of private partitions. There must be at least one public partition that stores common data. Users implicitly have the privilege to access all public partitions. Whether they have access to the objects within these partitions may be subject to object level security, though. Users can be assigned to zero or more private partitions, meaning that they have the privilege to access these partitions. Upon login, users choose to work within one or more of the assigned private partitions. Users who have logged in to a private partition get to see objects from the set of all public partitions and the private partition(s). Objects can only refer to objects in the same partition or in other referencable partitions.
- 
- 
Field SummaryFields Modifier and Type Field Description static StringGLOBALThe name of the GLOBAL partitionstatic StringOBJECT_TYPEString that will be returned fromSchedulerEntity.getObjectType()for "Partition" objects.static StringSEC_PRIV_CREATEThis privilege can be granted at a group level.static StringSEC_PRIV_DELETEThis privilege can be granted at a group level.static StringSEC_PRIV_EDITThis privilege can be granted at a group level.static StringSEC_PRIV_VIEWThis privilege can be granted at a group level.static StringSEC_RANK_ALLThis rank is made of the following privileges: create , view , edit , deletestatic StringSEC_RANK_CREATEThis rank is made of the following privileges: createstatic StringSEC_RANK_DELETEThis rank is made of the following privileges: create , view , deletestatic StringSEC_RANK_EDITThis rank is made of the following privileges: create , view , editstatic StringSEC_RANK_NONEThis rank has no privileges assigned to it.static StringSEC_RANK_VIEWThis rank is made of the following privileges: viewstatic QueryObjectType<Partition>TYPEType that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...).- 
Fields inherited from interface com.redwood.scheduler.api.model.SchedulerEntityACTION_AUDIT, ACTION_EXPORT, ACTION_READ, BEHAVIOR_DEPRECATED, BEHAVIOR_NONE, BEHAVIOR_SYSTEM
 
- 
 - 
Method Summary- 
Methods inherited from interface com.redwood.scheduler.api.model.BusinessKeyObjectgetBusinessKey
 - 
Methods inherited from interface com.redwood.scheduler.api.model.NamedRootObjectcreateObjectReference, getComment, getDescription, getLinkedObjectReferenceByLinkedObject, getLinkedObjectReferenceByName, getLinkedObjectReferences, getName, getSearchName, getSourceObjectReferences, isHidden, setComment, setDescription, setName
 - 
Methods inherited from interface com.redwood.scheduler.api.model.RootgetCreationTime, getLastModificationTime, getLastModifierSubject
 - 
Methods inherited from interface com.redwood.scheduler.api.model.SchedulerEntitycanPerform, createSubjectObjectPrivilegeGrant, deleteObject, getAuditTrail, getAuditTrailSize, getBehavior, getEffectiveBehavior, getErrorNameEN, getErrorNameKey, getLLPVersion, getLOV, getLOVSupport, getObjectType, getParentSchedulerEntities, getRuntime, getSubjectObjectPrivilegeGrantBySubject, getSubjectObjectPrivilegeGrants, getUniqueId, getUrl, getUrl, isCreated, isDeletable, isDeleted, isModifiable, isModified, isSelectVersioned, processRelatedObjects, processRelatedObjects, processRelatedObjects, refreshObject, resetObject, resetObject, resetValuesToDefault, selectForRead
 
- 
 
- 
- 
- 
Field Detail- 
OBJECT_TYPEstatic final String OBJECT_TYPE String that will be returned fromSchedulerEntity.getObjectType()for "Partition" objects.- See Also:
- Constant Field Values
 
 - 
TYPEstatic final QueryObjectType<Partition> TYPE Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...).
 - 
GLOBALstatic final String GLOBAL The name of the GLOBAL partition- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_CREATEstatic final String SEC_PRIV_CREATE This privilege can be granted at a group level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_VIEWstatic final String SEC_PRIV_VIEW This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_EDITstatic final String SEC_PRIV_EDIT This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_DELETEstatic final String SEC_PRIV_DELETE This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_RANK_NONEstatic final String SEC_RANK_NONE This rank has no privileges assigned to it.- See Also:
- Constant Field Values
 
 - 
SEC_RANK_CREATEstatic final String SEC_RANK_CREATE This rank is made of the following privileges: create- See Also:
- Constant Field Values
 
 - 
SEC_RANK_VIEWstatic final String SEC_RANK_VIEW This rank is made of the following privileges: view- See Also:
- Constant Field Values
 
 - 
SEC_RANK_EDITstatic final String SEC_RANK_EDIT This rank is made of the following privileges: create , view , edit- See Also:
- Constant Field Values
 
 - 
SEC_RANK_DELETEstatic final String SEC_RANK_DELETE This rank is made of the following privileges: create , view , delete- See Also:
- Constant Field Values
 
 - 
SEC_RANK_ALLstatic final String SEC_RANK_ALL This rank is made of the following privileges: create , view , edit , delete- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
isExportableboolean isExportable() Get the value for Exportable. (Is the partition exportable)- Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
setExportablevoid setExportable(boolean newExportable) Set the value for Exportable. (Is the partition exportable)- Parameters:
- newExportable- the new value for Exportable.
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getObjectsIterator getObjects() Get all objects in this partition- Returns:
- All objects in this partition.
 
 - 
getObjectSelectSQLString[] getObjectSelectSQL() Get an array of select statements for all objects in this partition- Returns:
- An array of select statements for all objects in this partition.
 
 - 
getIsolationGroupIsolationGroup getIsolationGroup() Get the IsolationGroup.- Returns:
- IsolationGroup
- Throws:
- com.redwood.scheduler.api.exception.ObjectDeletedException- If this method is called when the object has been marked for deletion.
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- If this method is called when the object has been removed from it's session.
 
 - 
setIsolationGroupvoid setIsolationGroup(IsolationGroup newIsolationGroup) Set the value for IsolationGroup. This value is mandatory.- Parameters:
- newIsolationGroup- is the object to set IsolationGroup to. The isolation group that this partition belongs to. If this is- null, then the object cannot be persisted.
 
 - 
getProcessMonitorsRWIterable<ProcessMonitor> getProcessMonitors() Get anRWIterableover an ordered collection ofProcessMonitors. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getProcessMonitorsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofProcessMonitorobjects .
 
 - 
getProcessMonitorByNameInstanceProcessMonitor getProcessMonitorByNameInstance(String name, String instance) Get the ProcessMonitor by ProcessMonitorInstance.- Parameters:
- name-
- instance-
- Returns:
- the ProcessMonitor, or nullif it could not be found
 
 - 
getApplicationsRWIterable<Application> getApplications() Get anRWIterableover an ordered collection ofApplications. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getApplicationsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofApplicationobjects .
 
 - 
getApplicationByParentApplicationNameApplication getApplicationByParentApplicationName(Application parentApplication, String name) Get the Application by Name.- Parameters:
- parentApplication-
- name-
- Returns:
- the Application, or nullif it could not be found
 
 - 
getDashboardsRWIterable<Dashboard> getDashboards() Get anRWIterableover an ordered collection ofDashboards. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getDashboardsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofDashboardobjects .
 
 - 
getDocumentsRWIterable<Document> getDocuments() Get anRWIterableover an ordered collection ofDocuments. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getDocumentsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofDocumentobjects .
 
 - 
getDocumentByParentApplicationSearchNameDocument getDocumentByParentApplicationSearchName(Application parentApplication, String searchName) Get the Document by Path.- Parameters:
- parentApplication-
- searchName-
- Returns:
- the Document, or nullif it could not be found
 
 - 
getJobDefinitionsRWIterable<JobDefinition> getJobDefinitions() Get anRWIterableover an ordered collection ofJobDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getJobDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofJobDefinitionobjects .
 
 - 
getJobDefinitionByNameBranchedLLPVersionJobDefinition getJobDefinitionByNameBranchedLLPVersion(String name, Long branchedLLPVersion) Get the JobDefinition by Name.- Parameters:
- name-
- branchedLLPVersion-
- Returns:
- the JobDefinition, or nullif it could not be found
 
 - 
getAlertEscalationsRWIterable<AlertEscalation> getAlertEscalations() Get anRWIterableover an ordered collection ofAlertEscalations. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getAlertEscalationsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofAlertEscalationobjects .
 
 - 
getAlertEscalationByNameAlertEscalation getAlertEscalationByName(String name) Get the AlertEscalation by Name.- Parameters:
- name-
- Returns:
- the AlertEscalation, or nullif it could not be found
 
 - 
getConstraintDefinitionsRWIterable<ConstraintDefinition> getConstraintDefinitions() Get anRWIterableover an ordered collection ofConstraintDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getConstraintDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofConstraintDefinitionobjects .
 
 - 
getConstraintDefinitionByNameConstraintDefinition getConstraintDefinitionByName(String name) Get the ConstraintDefinition by Name.- Parameters:
- name-
- Returns:
- the ConstraintDefinition, or nullif it could not be found
 
 - 
getCredentialProtocolsRWIterable<CredentialProtocol> getCredentialProtocols() Get anRWIterableover an ordered collection ofCredentialProtocols. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getCredentialProtocolsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofCredentialProtocolobjects .
 
 - 
getCredentialProtocolByNameCredentialProtocol getCredentialProtocolByName(String name) Get the CredentialProtocol by Name.- Parameters:
- name-
- Returns:
- the CredentialProtocol, or nullif it could not be found
 
 - 
getDatabasesRWIterable<Database> getDatabases() Get anRWIterableover an ordered collection ofDatabases. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getDatabasesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofDatabaseobjects .
 
 - 
getDatabaseByNameDatabase getDatabaseByName(String name) Get the Database by Name.- Parameters:
- name-
- Returns:
- the Database, or nullif it could not be found
 
 - 
getDatumDefinitionsRWIterable<DatumDefinition> getDatumDefinitions() Get anRWIterableover an ordered collection ofDatumDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getDatumDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofDatumDefinitionobjects .
 
 - 
getDatumDefinitionByNameDatumDefinition getDatumDefinitionByName(String name) Get the DatumDefinition by Name.- Parameters:
- name-
- Returns:
- the DatumDefinition, or nullif it could not be found
 
 - 
getExportRuleSetsRWIterable<ExportRuleSet> getExportRuleSets() Get anRWIterableover an ordered collection ofExportRuleSets. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getExportRuleSetsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofExportRuleSetobjects .
 
 - 
getExportRuleSetByNameExportRuleSet getExportRuleSetByName(String name) Get the ExportRuleSet by Name.- Parameters:
- name-
- Returns:
- the ExportRuleSet, or nullif it could not be found
 
 - 
getExtensionPointsRWIterable<ExtensionPoint> getExtensionPoints() Get anRWIterableover an ordered collection ofExtensionPoints. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getExtensionPointsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofExtensionPointobjects .
 
 - 
getExtensionPointByNameExtensionPoint getExtensionPointByName(String name) Get the ExtensionPoint by Name.- Parameters:
- name-
- Returns:
- the ExtensionPoint, or nullif it could not be found
 
 - 
getEventDefinitionsRWIterable<EventDefinition> getEventDefinitions() Get anRWIterableover an ordered collection ofEventDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getEventDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofEventDefinitionobjects .
 
 - 
getEventDefinitionByNameEventDefinition getEventDefinitionByName(String name) Get the EventDefinition by Name.- Parameters:
- name-
- Returns:
- the EventDefinition, or nullif it could not be found
 
 - 
getFormatsRWIterable<Format> getFormats() Get anRWIterableover an ordered collection ofFormats. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getFormatsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofFormatobjects .
 
 - 
getFormatByNameFormat getFormatByName(String name) Get the Format by Name.- Parameters:
- name-
- Returns:
- the Format, or nullif it could not be found
 
 - 
getImportRuleDefinitionsRWIterable<ImportRuleDefinition> getImportRuleDefinitions() Get anRWIterableover an ordered collection ofImportRuleDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getImportRuleDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofImportRuleDefinitionobjects .
 
 - 
getImportRuleDefinitionByNameImportRuleDefinition getImportRuleDefinitionByName(String name) Get the ImportRuleDefinition by Name.- Parameters:
- name-
- Returns:
- the ImportRuleDefinition, or nullif it could not be found
 
 - 
getImportRuleSetsRWIterable<ImportRuleSet> getImportRuleSets() Get anRWIterableover an ordered collection ofImportRuleSets. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getImportRuleSetsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofImportRuleSetobjects .
 
 - 
getImportRuleSetByNameImportRuleSet getImportRuleSetByName(String name) Get the ImportRuleSet by Name.- Parameters:
- name-
- Returns:
- the ImportRuleSet, or nullif it could not be found
 
 - 
getImportSourcesRWIterable<ImportSource> getImportSources() Get anRWIterableover an ordered collection ofImportSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getImportSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofImportSourceobjects .
 
 - 
getImportSourceByNameImportSource getImportSourceByName(String name) Get the ImportSource by Name.- Parameters:
- name-
- Returns:
- the ImportSource, or nullif it could not be found
 
 - 
getJobDefinitionTypesRWIterable<JobDefinitionType> getJobDefinitionTypes() Get anRWIterableover an ordered collection ofJobDefinitionTypes. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getJobDefinitionTypesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofJobDefinitionTypeobjects .
 
 - 
getJobDefinitionTypeByNameJobDefinitionType getJobDefinitionTypeByName(String name) Get the JobDefinitionType by Name.- Parameters:
- name-
- Returns:
- the JobDefinitionType, or nullif it could not be found
 
 - 
getJobLocksRWIterable<JobLock> getJobLocks() Get anRWIterableover an ordered collection ofJobLocks. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getJobLocksin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofJobLockobjects .
 
 - 
getJobLockByNameJobLock getJobLockByName(String name) Get the JobLock by Name.- Parameters:
- name-
- Returns:
- the JobLock, or nullif it could not be found
 
 - 
getLibrariesRWIterable<Library> getLibraries() Get anRWIterableover an ordered collection ofLibraries. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getLibrariesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofLibraryobjects .
 
 - 
getLibraryByNameLibrary getLibraryByName(String name) Get the Library by Name.- Parameters:
- name-
- Returns:
- the Library, or nullif it could not be found
 
 - 
getMailConnectorsRWIterable<MailConnector> getMailConnectors() Get anRWIterableover an ordered collection ofMailConnectors. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getMailConnectorsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofMailConnectorobjects .
 
 - 
getMailConnectorByNameMailConnector getMailConnectorByName(String name) Get the MailConnector by Name.- Parameters:
- name-
- Returns:
- the MailConnector, or nullif it could not be found
 
 - 
getNavigationBarsRWIterable<NavigationBar> getNavigationBars() Get anRWIterableover an ordered collection ofNavigationBars. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getNavigationBarsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofNavigationBarobjects .
 
 - 
getNavigationBarByOwnerSubjectNameNavigationBar getNavigationBarByOwnerSubjectName(Subject ownerSubject, String name) Get the NavigationBar by OwnerSubjectName.- Parameters:
- ownerSubject-
- name-
- Returns:
- the NavigationBar, or nullif it could not be found
 
 - 
getNavigationBarByNameNavigationBar getNavigationBarByName(String name) Get the NavigationBar by Name.- Parameters:
- name-
- Returns:
- the NavigationBar, or nullif it could not be found
 
 - 
getObjectTagDefinitionsRWIterable<ObjectTagDefinition> getObjectTagDefinitions() Get anRWIterableover an ordered collection ofObjectTagDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getObjectTagDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofObjectTagDefinitionobjects .
 
 - 
getObjectTagDefinitionByNameObjectTagDefinition getObjectTagDefinitionByName(String name) Get the ObjectTagDefinition by Name.- Parameters:
- name-
- Returns:
- the ObjectTagDefinition, or nullif it could not be found
 
 - 
getOraAppsSystemsRWIterable<OraAppsSystem> getOraAppsSystems() Get anRWIterableover an ordered collection ofOraAppsSystems. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getOraAppsSystemsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofOraAppsSystemobjects .
 
 - 
getOraAppsSystemByNameOraAppsSystem getOraAppsSystemByName(String name) Get the OraAppsSystem by Name.- Parameters:
- name-
- Returns:
- the OraAppsSystem, or nullif it could not be found
 
 - 
getOraOhiSystemsRWIterable<OraOhiSystem> getOraOhiSystems() Get anRWIterableover an ordered collection ofOraOhiSystems. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getOraOhiSystemsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofOraOhiSystemobjects .
 
 - 
getOraOhiSystemByNameOraOhiSystem getOraOhiSystemByName(String name) Get the OraOhiSystem by Name.- Parameters:
- name-
- Returns:
- the OraOhiSystem, or nullif it could not be found
 
 - 
getPeopleSoftSystemsRWIterable<PeopleSoftSystem> getPeopleSoftSystems() Get anRWIterableover an ordered collection ofPeopleSoftSystems. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getPeopleSoftSystemsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofPeopleSoftSystemobjects .
 
 - 
getPeopleSoftSystemByNamePeopleSoftSystem getPeopleSoftSystemByName(String name) Get the PeopleSoftSystem by Name.- Parameters:
- name-
- Returns:
- the PeopleSoftSystem, or nullif it could not be found
 
 - 
getPeriodFunctionsRWIterable<PeriodFunction> getPeriodFunctions() Get anRWIterableover an ordered collection ofPeriodFunctions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getPeriodFunctionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofPeriodFunctionobjects .
 
 - 
getPeriodFunctionByNamePeriodFunction getPeriodFunctionByName(String name) Get the PeriodFunction by Name.- Parameters:
- name-
- Returns:
- the PeriodFunction, or nullif it could not be found
 
 - 
getProcessMonitorDefinitionsRWIterable<ProcessMonitorDefinition> getProcessMonitorDefinitions() Get anRWIterableover an ordered collection ofProcessMonitorDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getProcessMonitorDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofProcessMonitorDefinitionobjects .
 
 - 
getProcessMonitorDefinitionByNameProcessMonitorDefinition getProcessMonitorDefinitionByName(String name) Get the ProcessMonitorDefinition by Name.- Parameters:
- name-
- Returns:
- the ProcessMonitorDefinition, or nullif it could not be found
 
 - 
getProcessServersRWIterable<ProcessServer> getProcessServers() Get anRWIterableover an ordered collection ofProcessServers. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getProcessServersin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofProcessServerobjects .
 
 - 
getProcessServerByNameProcessServer getProcessServerByName(String name) Get the ProcessServer by Name.- Parameters:
- name-
- Returns:
- the ProcessServer, or nullif it could not be found
 
 - 
getQueuesRWIterable<Queue> getQueues() Get anRWIterableover an ordered collection ofQueues. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getQueuesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofQueueobjects .
 
 - 
getQueueByNameQueue getQueueByName(String name) Get the Queue by Name.- Parameters:
- name-
- Returns:
- the Queue, or nullif it could not be found
 
 - 
getR2WCatalogsRWIterable<R2WCatalog> getR2WCatalogs() Get anRWIterableover an ordered collection ofR2WCatalogs. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getR2WCatalogsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofR2WCatalogobjects .
 
 - 
getR2WCatalogByNameR2WCatalog getR2WCatalogByName(String name) Get the R2WCatalog by Name.- Parameters:
- name-
- Returns:
- the R2WCatalog, or nullif it could not be found
 
 - 
getRemoteSystemsRWIterable<RemoteSystem> getRemoteSystems() Get anRWIterableover an ordered collection ofRemoteSystems. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getRemoteSystemsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofRemoteSystemobjects .
 
 - 
getRemoteSystemByNameRemoteSystem getRemoteSystemByName(String name) Get the RemoteSystem by Name.- Parameters:
- name-
- Returns:
- the RemoteSystem, or nullif it could not be found
 
 - 
getResourcesRWIterable<Resource> getResources() Get anRWIterableover an ordered collection ofResources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getResourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofResourceobjects .
 
 - 
getResourceByNameResource getResourceByName(String name) Get the Resource by Name.- Parameters:
- name-
- Returns:
- the Resource, or nullif it could not be found
 
 - 
getSAPSystemsRWIterable<SAPSystem> getSAPSystems() Get anRWIterableover an ordered collection ofSAPSystems. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getSAPSystemsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofSAPSystemobjects .
 
 - 
getSAPSystemByNameSAPSystem getSAPSystemByName(String name) Get the SAPSystem by Name.- Parameters:
- name-
- Returns:
- the SAPSystem, or nullif it could not be found
 
 - 
getSAPBAEConnectorsRWIterable<SAPBAEConnector> getSAPBAEConnectors() Get anRWIterableover an ordered collection ofSAPBAEConnectors. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getSAPBAEConnectorsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofSAPBAEConnectorobjects .
 
 - 
getSAPBAEConnectorByNameSAPBAEConnector getSAPBAEConnectorByName(String name) Get the SAPBAEConnector by Name.- Parameters:
- name-
- Returns:
- the SAPBAEConnector, or nullif it could not be found
 
 - 
getServicesRWIterable<Service> getServices() Get anRWIterableover an ordered collection ofServices. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getServicesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofServiceobjects .
 
 - 
getServiceByNameService getServiceByName(String name) Get the Service by Name.- Parameters:
- name-
- Returns:
- the Service, or nullif it could not be found
 
 - 
getSubmitFramesRWIterable<SubmitFrame> getSubmitFrames() Get anRWIterableover an ordered collection ofSubmitFrames. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getSubmitFramesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofSubmitFrameobjects .
 
 - 
getSubmitFrameByNameSubmitFrame getSubmitFrameByName(String name) Get the SubmitFrame by Name.- Parameters:
- name-
- Returns:
- the SubmitFrame, or nullif it could not be found
 
 - 
getTablesRWIterable<Table> getTables() Get anRWIterableover an ordered collection ofTables. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getTablesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofTableobjects .
 
 - 
getTableByNameTable getTableByName(String name) Get the Table by Name.- Parameters:
- name-
- Returns:
- the Table, or nullif it could not be found
 
 - 
getTableDefinitionsRWIterable<TableDefinition> getTableDefinitions() Get anRWIterableover an ordered collection ofTableDefinitions. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getTableDefinitionsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofTableDefinitionobjects .
 
 - 
getTableDefinitionByNameTableDefinition getTableDefinitionByName(String name) Get the TableDefinition by Name.- Parameters:
- name-
- Returns:
- the TableDefinition, or nullif it could not be found
 
 - 
getTimeWindowsRWIterable<TimeWindow> getTimeWindows() Get anRWIterableover an ordered collection ofTimeWindows. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getTimeWindowsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofTimeWindowobjects .
 
 - 
getTimeWindowByNameTimeWindow getTimeWindowByName(String name) Get the TimeWindow by Name.- Parameters:
- name-
- Returns:
- the TimeWindow, or nullif it could not be found
 
 - 
getTriggersRWIterable<Trigger> getTriggers() Get anRWIterableover an ordered collection ofTriggers. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getTriggersin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofTriggerobjects .
 
 - 
getTriggerByNameTrigger getTriggerByName(String name) Get the Trigger by Name.- Parameters:
- name-
- Returns:
- the Trigger, or nullif it could not be found
 
 - 
getEmailAlertGatewaysRWIterable<EmailAlertGateway> getEmailAlertGateways() Get anRWIterableover an ordered collection ofEmailAlertGateways. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getEmailAlertGatewaysin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofEmailAlertGatewayobjects .
 
 - 
getEmailAlertGatewayByNameEmailAlertGateway getEmailAlertGatewayByName(String name) Get the EmailAlertGateway by Name.- Parameters:
- name-
- Returns:
- the EmailAlertGateway, or nullif it could not be found
 
 - 
getAdHocAlertSourcesRWIterable<AdHocAlertSource> getAdHocAlertSources() Get anRWIterableover an ordered collection ofAdHocAlertSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getAdHocAlertSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofAdHocAlertSourceobjects .
 
 - 
getAdHocAlertSourceByNameAdHocAlertSource getAdHocAlertSourceByName(String name) Get the AdHocAlertSource by Name.- Parameters:
- name-
- Returns:
- the AdHocAlertSource, or nullif it could not be found
 
 - 
getJobDefinitionAlertSourcesRWIterable<JobDefinitionAlertSource> getJobDefinitionAlertSources() Get anRWIterableover an ordered collection ofJobDefinitionAlertSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getJobDefinitionAlertSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofJobDefinitionAlertSourceobjects .
 
 - 
getJobDefinitionAlertSourceByNameJobDefinitionAlertSource getJobDefinitionAlertSourceByName(String name) Get the JobDefinitionAlertSource by Name.- Parameters:
- name-
- Returns:
- the JobDefinitionAlertSource, or nullif it could not be found
 
 - 
getMonitorAlertSourcesRWIterable<MonitorAlertSource> getMonitorAlertSources() Get anRWIterableover an ordered collection ofMonitorAlertSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getMonitorAlertSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofMonitorAlertSourceobjects .
 
 - 
getMonitorAlertSourceByNameMonitorAlertSource getMonitorAlertSourceByName(String name) Get the MonitorAlertSource by Name.- Parameters:
- name-
- Returns:
- the MonitorAlertSource, or nullif it could not be found
 
 - 
getProcessServerAlertSourcesRWIterable<ProcessServerAlertSource> getProcessServerAlertSources() Get anRWIterableover an ordered collection ofProcessServerAlertSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getProcessServerAlertSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofProcessServerAlertSourceobjects .
 
 - 
getProcessServerAlertSourceByNameProcessServerAlertSource getProcessServerAlertSourceByName(String name) Get the ProcessServerAlertSource by Name.- Parameters:
- name-
- Returns:
- the ProcessServerAlertSource, or nullif it could not be found
 
 - 
getQueueAlertSourcesRWIterable<QueueAlertSource> getQueueAlertSources() Get anRWIterableover an ordered collection ofQueueAlertSources. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getQueueAlertSourcesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofQueueAlertSourceobjects .
 
 - 
getQueueAlertSourceByNameQueueAlertSource getQueueAlertSourceByName(String name) Get the QueueAlertSource by Name.- Parameters:
- name-
- Returns:
- the QueueAlertSource, or nullif it could not be found
 
 - 
getCredentialsRWIterable<Credential> getCredentials() Get anRWIterableover an ordered collection ofCredentials. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getCredentialsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofCredentialobjects .
 
 - 
getCredentialByCredentialProtocolEndpointRealUserCredential getCredentialByCredentialProtocolEndpointRealUser(CredentialProtocol credentialProtocol, String endpoint, String realUser) Get the Credential by CredentialProtocolEndpointRealUser.- Parameters:
- credentialProtocol-
- endpoint-
- realUser-
- Returns:
- the Credential, or nullif it could not be found
 
 - 
getCredentialByCredentialProtocolEndpointVirtualUserCredential getCredentialByCredentialProtocolEndpointVirtualUser(CredentialProtocol credentialProtocol, String endpoint, String virtualUser) Get the Credential by CredentialProtocolEndpointVirtualUser.- Parameters:
- credentialProtocol-
- endpoint-
- virtualUser-
- Returns:
- the Credential, or nullif it could not be found
 
 - 
getRestrictedSchedulerSessionSpecificationsRWIterable<RestrictedSchedulerSessionSpecification> getRestrictedSchedulerSessionSpecifications() Get anRWIterableover an ordered collection ofRestrictedSchedulerSessionSpecifications. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getRestrictedSchedulerSessionSpecificationsin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofRestrictedSchedulerSessionSpecificationobjects .
 
 - 
getUserMessagesRWIterable<UserMessage> getUserMessages() Get anRWIterableover an ordered collection ofUserMessages. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The objects in this partition.- Specified by:
- getUserMessagesin interface- PartitionComp
- Returns:
- An RWIterableover an ordered collection ofUserMessageobjects .
 
 - 
checkCreatePrivilegeRequiredPermission checkCreatePrivilege() Check whether or not the create action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkViewPrivilegeRequiredPermission checkViewPrivilege() Check whether or not the view action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkEditPrivilegeRequiredPermission checkEditPrivilege() Check whether or not the edit action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkDeletePrivilegeRequiredPermission checkDeletePrivilege() Check whether or not the delete action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 
- 
 
-