public interface ProcessManagement
Modifier and Type | Method and Description |
---|---|
ProcessInfoDocument |
activate(javax.xml.namespace.QName pid)
Activate a process.
|
ActivityExtInfoListDocument |
getExtensibilityElements(javax.xml.namespace.QName pid,
java.lang.Integer[] aids)
Get all extensibility elements associated with provided activity ids.
|
ProcessInfoDocument |
getProcessInfo(javax.xml.namespace.QName pid)
Get the process info for a process (includingthe instance summary).
|
ProcessInfoDocument |
getProcessInfoCustom(javax.xml.namespace.QName pid,
ProcessInfoCustomizer custom)
Get the process info for a process.
|
ProcessInfoListDocument |
listAllProcesses()
List the processes known to the engine.
|
ProcessInfoListDocument |
listProcesses(java.lang.String filter,
java.lang.String orderKeys)
List the processes known to the engine (including instance summaries).
|
ProcessInfoListDocument |
listProcessesCustom(java.lang.String filter,
java.lang.String orderKeys,
ProcessInfoCustomizer custom)
List the processes known to the engine.
|
ProcessInfoListDocument |
listProcessesSummaryOnly()
List the processes known to the engine, excluding the document list, properties and end point configs.
|
void |
setPackageRetired(java.lang.String packageName,
boolean retired)
Retires all the processes contained in a package.
|
ProcessInfoDocument |
setProcessProperty(javax.xml.namespace.QName pid,
javax.xml.namespace.QName propertyName,
java.lang.String value)
Set a process property as a simple type.
|
ProcessInfoDocument |
setProcessPropertyNode(javax.xml.namespace.QName pid,
javax.xml.namespace.QName propertyName,
org.w3c.dom.Node value)
Set a process property as a Node.
|
ProcessInfoDocument |
setRetired(javax.xml.namespace.QName pid,
boolean retired)
Retire a process.
|
ProcessInfoListDocument listProcesses(java.lang.String filter, java.lang.String orderKeys)
filter
- selection filter or null
(for no filtering).orderKeys
- keys used to order the resultsProcessInfoDocument
s (including instance summaries)ProcessInfoListDocument listProcessesCustom(java.lang.String filter, java.lang.String orderKeys, ProcessInfoCustomizer custom)
filter
- selection filter or null
(for no filtering).orderKeys
- keys used to order the resultscustom
- used to customize the quantity of information returnedProcessInfoDocument
s (including instance summaries)ProcessInfoListDocument listAllProcesses()
ProcessInfoDocument
s (including instance summaries)ProcessInfoListDocument listProcessesSummaryOnly()
ProcessInfoDocument
s (including instance summaries)ProcessInfoDocument getProcessInfoCustom(javax.xml.namespace.QName pid, ProcessInfoCustomizer custom) throws ManagementException
pid
- name of the processcustom
- used to customize the quantity of information returnedProcessInfoDocument
ManagementException
ProcessInfoDocument getProcessInfo(javax.xml.namespace.QName pid) throws ManagementException
pid
- name of the processProcessInfoDocument
with all details.ManagementException
ActivityExtInfoListDocument getExtensibilityElements(javax.xml.namespace.QName pid, java.lang.Integer[] aids)
pid
- process identifieraids
- activity indentifiersActivityExtInfoListDocument
ProcessInfoDocument setProcessPropertyNode(javax.xml.namespace.QName pid, javax.xml.namespace.QName propertyName, org.w3c.dom.Node value) throws ManagementException
pid
- name of processpropertyName
- qname of propertyvalue
- property valueProcessInfoDocument
reflecting the modificationManagementException
ProcessInfoDocument setProcessProperty(javax.xml.namespace.QName pid, javax.xml.namespace.QName propertyName, java.lang.String value) throws ManagementException
pid
- name of processpropertyName
- qname of propertyvalue
- property valueProcessInfoDocument
reflecting the modificationManagementException
ProcessInfoDocument activate(javax.xml.namespace.QName pid) throws ManagementException
pid
- identifier for the process to loadProcessInfoDocument
reflecting the modificationManagementException
ProcessInfoDocument setRetired(javax.xml.namespace.QName pid, boolean retired) throws ManagementException
pid
- identifier of the process to retireretired
- TODOProcessInfoDocument
reflecting the modificationManagementException
void setPackageRetired(java.lang.String packageName, boolean retired)
packageName
- retired
-