public interface ProcessManagement
Modifier and Type | Method and Description |
---|---|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
activate(javax.xml.namespace.QName pid)
Activate a process.
|
org.apache.ode.bpel.pmapi.ActivityExtInfoListDocument |
getExtensibilityElements(javax.xml.namespace.QName pid,
java.lang.Integer[] aids)
Get all extensibility elements associated with provided activity ids.
|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
getProcessInfo(javax.xml.namespace.QName pid)
Get the process info for a process (includingthe instance summary).
|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
getProcessInfoCustom(javax.xml.namespace.QName pid,
ProcessInfoCustomizer custom)
Get the process info for a process.
|
org.apache.ode.bpel.pmapi.ProcessInfoListDocument |
listAllProcesses()
List the processes known to the engine.
|
org.apache.ode.bpel.pmapi.ProcessInfoListDocument |
listProcesses(java.lang.String filter,
java.lang.String orderKeys)
List the processes known to the engine (including instance summaries).
|
org.apache.ode.bpel.pmapi.ProcessInfoListDocument |
listProcessesCustom(java.lang.String filter,
java.lang.String orderKeys,
ProcessInfoCustomizer custom)
List the processes known to the engine.
|
org.apache.ode.bpel.pmapi.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.
|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
setProcessProperty(javax.xml.namespace.QName pid,
javax.xml.namespace.QName propertyName,
java.lang.String value)
Set a process property as a simple type.
|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
setProcessPropertyNode(javax.xml.namespace.QName pid,
javax.xml.namespace.QName propertyName,
org.w3c.dom.Node value)
Set a process property as a Node.
|
org.apache.ode.bpel.pmapi.ProcessInfoDocument |
setRetired(javax.xml.namespace.QName pid,
boolean retired)
Retire a process.
|
org.apache.ode.bpel.pmapi.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)org.apache.ode.bpel.pmapi.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)org.apache.ode.bpel.pmapi.ProcessInfoListDocument listAllProcesses()
ProcessInfoDocument
s (including instance summaries)org.apache.ode.bpel.pmapi.ProcessInfoListDocument listProcessesSummaryOnly()
ProcessInfoDocument
s (including instance summaries)org.apache.ode.bpel.pmapi.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
org.apache.ode.bpel.pmapi.ProcessInfoDocument getProcessInfo(javax.xml.namespace.QName pid) throws ManagementException
pid
- name of the processProcessInfoDocument
with all details.ManagementException
org.apache.ode.bpel.pmapi.ActivityExtInfoListDocument getExtensibilityElements(javax.xml.namespace.QName pid, java.lang.Integer[] aids)
pid
- process identifieraids
- activity indentifiersActivityExtInfoListDocument
org.apache.ode.bpel.pmapi.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
org.apache.ode.bpel.pmapi.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
org.apache.ode.bpel.pmapi.ProcessInfoDocument activate(javax.xml.namespace.QName pid) throws ManagementException
pid
- identifier for the process to loadProcessInfoDocument
reflecting the modificationManagementException
org.apache.ode.bpel.pmapi.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
-