public interface ProcessImageRenderer extends ADEPT2Service
| Modifier and Type | Method and Description |
|---|---|
ProcessImageData |
getInstance(SessionToken session,
java.util.UUID instanceID,
RenderOptions options)
Gets the designated process instance from the process manager as rendered
image.
|
ProcessImageData |
getTemplate(SessionToken session,
java.util.UUID templateID,
RenderOptions options)
Gets the designated process template from the process manager as rendered
image.
|
ProcessImageData |
renderInstance(SessionToken session,
Instance instance,
RenderOptions options)
Gets the designated process instance as rendered image.
|
ProcessImageData |
renderTemplate(SessionToken session,
Template template,
RenderOptions options)
Gets the designated process template as rendered image.
|
getLocalUris, getRelease, getRuntimeRequiredServices, getServiceInstanceName, getStartupRequiredServices, getURIs, init, ping, preShutdown, shutdown, startProcessImageData getTemplate(SessionToken session, java.util.UUID templateID, RenderOptions options)
session - The session which is used to check for access rights on this
method.templateID - The ID of the process template to retrieve.options - Various options for the rendering implementation. Use
null to use the defaults of this service.ProcessImageData getInstance(SessionToken session, java.util.UUID instanceID, RenderOptions options)
session - The session which is used to check for access rights on this
method.instanceID - The ID of the process instance to retrieve.options - Various options for the rendering implementation. Use
null to use the defaults of this service.ProcessImageData renderTemplate(SessionToken session, Template template, RenderOptions options)
session - The session which is used to check for access rights on this
method.template - The process template to render.options - Various options for the rendering implementation. Use
null to use the defaults of this service.ProcessImageData renderInstance(SessionToken session, Instance instance, RenderOptions options)
session - The session which is used to check for access rights on this
method.instance - The process instance to render. This has to contain the
corresponding template.options - Various options for the rendering implementation. Use
null to use the defaults of this service.