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. -
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 with parameters of type TemplateProxy Modifier and Type Method Description ProcessType
ProcessModelFactory. createProcessType(String name, TemplateProxy templateProxy)
Creates a new process type.
-