Uses of Interface
com.redwood.scheduler.api.model.Application
-
Packages that use Application Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.compatibility_14 -
-
Uses of Application in com.redwood.scheduler.api.model
Fields in com.redwood.scheduler.api.model with type parameters of type Application Modifier and Type Field Description static QueryObjectType<Application>
Application. TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.Methods in com.redwood.scheduler.api.model that return Application Modifier and Type Method Description Application
SchedulerSession. createApplication()
Return a new instance of Application.Application
AuditRule. getApplication()
Get the Application.static Application
BusinessKeyLookup. getApplicationByBusinessKey(SchedulerSession session, String key)
Query an instance ofApplication
, based on its business key.Application
BusinessKeyResolver. getApplicationByKey(BusinessKey key)
Query an instance ofApplication
, based on its business key.Application
SchedulerSession. getApplicationByName(Application parentApplication, String name)
Get theApplication
by Name.Application
SchedulerSession. getApplicationByName(Partition partition, Application parentApplication, String name)
Get theApplication
by Name.Application
SchedulerSession. getApplicationByName(String name)
Get theApplication
by Name.Application
Partition. getApplicationByParentApplicationName(Application parentApplication, String name)
Get the Application by Name.Application
SchedulerSession. getApplicationByUniqueId(Long uniqueId)
Get theApplication
by UniqueId.Application
Application. getChildApplicationByPartitionName(Partition partition, String name)
Get the Application by Name.Application
ApplicationObject. getParentApplication()
Get the ParentApplication.Application
AuditRule. getParentApplication()
Get the ParentApplication.Application
QueryFilter. getParentApplication()
Get the ParentApplication.Application
AppUpgradeInfo. getRootApplication(SchedulerSession session)
Methods in com.redwood.scheduler.api.model that return types with arguments of type Application Modifier and Type Method Description RWIterable<Application>
Partition. getApplications()
Get anRWIterable
over an ordered collection ofApplications
.RWIterable<Application>
Application. getChildApplications()
Get anRWIterable
over a collection ofChildApplications
, the collection will be ordered by Name.Methods in com.redwood.scheduler.api.model with parameters of type Application Modifier and Type Method Description static Iterator<ApplicationObject>
ChildApplicationObjectIterator. getApplicationAndDescendents(Application application, boolean includeBranchedDefinitions)
Return an iterator over this application and all descendants in the application hierarchy.Application
SchedulerSession. getApplicationByName(Application parentApplication, String name)
Get theApplication
by Name.Application
SchedulerSession. getApplicationByName(Partition partition, Application parentApplication, String name)
Get theApplication
by Name.Application
Partition. getApplicationByParentApplicationName(Application parentApplication, String name)
Get the Application by Name.static Iterator<ApplicationObject>[]
ChildApplicationObjectIterator. getChildApplicationObjectIterators(Application application, boolean includeBranchedDefinitions)
Retrieve an array of iterators for the child objects of an application.Document
Partition. getDocumentByParentApplicationSearchName(Application parentApplication, String searchName)
Get the Document by Path.Document
SchedulerSession. getDocumentByPath(Partition partition, Application parentApplication, String searchName)
Get theDocument
by Path.void
AbstractConcreteObjectCallback. handle(Application theApplication)
void
ConcreteObjectCallback. handle(Application theApplication)
void
AuditRule. setApplication(Application newApplication)
Set the value for Application.void
ApplicationObject. setParentApplication(Application newParentApplication)
Set the value for ParentApplication.void
AuditRule. setParentApplication(Application newParentApplication)
Set the value for ParentApplication.void
QueryFilter. setParentApplication(Application newParentApplication)
Set the value for ParentApplication.Constructors in com.redwood.scheduler.api.model with parameters of type Application Constructor Description ChildApplicationObjectIterator(Application application, boolean includeBranchedDefinitions)
Construct an iterator over the child objects of an application. -
Uses of Application in com.redwood.scheduler.api.model.compatibility_14
Methods in com.redwood.scheduler.api.model.compatibility_14 that return types with arguments of type Application Modifier and Type Method Description Iterator<Application>
PartitionComp. getApplications()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, usePartition.getApplications()
instead.Iterator<Application>
ApplicationComp. getChildApplications()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, usegetChildApplications()
instead.
-