Uses of Interface
de.aristaflow.adept2.model.processmodel.TemplateProxy
-
Packages that use TemplateProxy Package Description de.aristaflow.adept2.core.processrepository de.aristaflow.adept2.model.processmodel -
-
Uses of TemplateProxy in de.aristaflow.adept2.core.processrepository
Methods in de.aristaflow.adept2.core.processrepository that return TemplateProxy Modifier and Type Method Description TemplateProxy
ProcessTemplateManager. getTemplateProxy(SessionToken session, UUID templateID)
Gets a lightweight object (TemplateProxy
) of the designated process template.Methods in de.aristaflow.adept2.core.processrepository that return types with arguments of type TemplateProxy Modifier and Type Method Description Set<TemplateProxy>
ProcessRepository. findUsageOfActivityTemplate(SessionToken session, UUID activityTemplateVersionID)
Finds all process templates which use the designated activity template in a process step.RemoteIterator<List<TemplateProxy>>
ProcessRepository. findUsageOfActivityTemplateIterator(SessionToken session, UUID activityTemplateVersionID)
The same asProcessRepository.findUsageOfActivityTemplate(SessionToken, UUID)
but with partial retrieval of the template proxies.Set<TemplateProxy>
ProcessRepository. findUsageOfProcessTemplate(SessionToken session, UUID processTemplateID)
Finds all process templates which reference the designated process template as subprocess.RemoteIterator<List<TemplateProxy>>
ProcessRepository. findUsageOfProcessTemplateIterator(SessionToken session, UUID processTemplateID)
The same asProcessRepository.findUsageOfProcessTemplate(SessionToken, UUID)
but with partial retrieval of the template proxies.Set<TemplateProxy>
ProcessTemplateManager. getAllTemplateProxies(SessionToken session, Filter filter)
Gets all lightweight objects (TemplateProxy
) that match the designated filter based onTemplateProxy
.RemoteIterator<List<TemplateProxy>>
ProcessTemplateManager. getAllTemplateProxiesIterator(SessionToken session, Filter filter)
The same asProcessTemplateManager.getAllTemplateProxies(SessionToken, Filter)
but with partial retrieval of the lightweight objects for process templates.Map<TemplateProxy,Collection<TemplateProxy>>
ProcessRepository. getParentTree(SessionToken session, UUID templId)
Finds the parent tree of the designated process template, that is, all (top-level) process templates that use the designated process template or one of its parents as subprocess.Map<TemplateProxy,Collection<TemplateProxy>>
ProcessRepository. getParentTree(SessionToken session, UUID templId)
Finds the parent tree of the designated process template, that is, all (top-level) process templates that use the designated process template or one of its parents as subprocess.RemoteIterator<List<SerialisablePair<TemplateProxy,TemplateProxy>>>
ProcessRepository. getParentTreeIterator(SessionToken session, UUID templId)
The same asProcessRepository.getParentTree(SessionToken, UUID)
but with partial retrieval of the template proxies.RemoteIterator<List<SerialisablePair<TemplateProxy,TemplateProxy>>>
ProcessRepository. getParentTreeIterator(SessionToken session, UUID templId)
The same asProcessRepository.getParentTree(SessionToken, UUID)
but with partial retrieval of the template proxies. -
Uses of TemplateProxy in de.aristaflow.adept2.model.processmodel
Methods in de.aristaflow.adept2.model.processmodel that return TemplateProxy Modifier and Type Method Description TemplateProxy
ProcessModelFactory. createTemplateProxy(TemplateReference templRef, UUID parent, List<UUID> children, Set<URI[]> deployedPm, long creationTime, long modificationTime, String internalVersion, QualifiedAgent lockingAgent)
Creates a new template proxy.TemplateProxy
ProcessType. getRootTemplate()
Gets (a proxy for) the root template of this process type which is the first ancestor of the null template.Methods in de.aristaflow.adept2.model.processmodel that return types with arguments of type TemplateProxy Modifier and Type Method Description static Collection<TemplateProxy>
TemplateProxyComparator. getSortedTemplProxies(Collection<TemplateProxy> unsortedTemplProxies)
Take the designated template proxies and return them as sorted collection.Methods in de.aristaflow.adept2.model.processmodel with parameters of type TemplateProxy Modifier and Type Method Description int
TemplateProxyComparator. compare(TemplateProxy o1, TemplateProxy o2)
ProcessType
ProcessModelFactory. createProcessType(String name, TemplateProxy templateProxy)
Creates a new process type.Method parameters in de.aristaflow.adept2.model.processmodel with type arguments of type TemplateProxy Modifier and Type Method Description static Collection<TemplateProxy>
TemplateProxyComparator. getSortedTemplProxies(Collection<TemplateProxy> unsortedTemplProxies)
Take the designated template proxies and return them as sorted collection.
-