Interface ProcessTask
-
- All Superinterfaces:
CmmnElement
,CmmnModelElementInstance
,ModelElementInstance
,PlanItemDefinition
,Task
- All Known Implementing Classes:
ProcessTaskImpl
public interface ProcessTask extends Task
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCamundaProcessBinding()
camunda extensionsjava.lang.String
getCamundaProcessTenantId()
java.lang.String
getCamundaProcessVersion()
java.util.Collection<ParameterMapping>
getParameterMappings()
java.lang.String
getProcess()
ProcessRefExpression
getProcessExpression()
void
setCamundaProcessBinding(java.lang.String camundaProcessBinding)
void
setCamundaProcessTenantId(java.lang.String camundaProcessTenantId)
void
setCamundaProcessVersion(java.lang.String camundaProcessVersion)
void
setProcess(java.lang.String process)
void
setProcessExpression(ProcessRefExpression processExpression)
-
Methods inherited from interface org.camunda.bpm.model.cmmn.instance.CmmnElement
getDescription, getDocumentations, getExtensionElements, getId, setDescription, setExtensionElements, setId
-
Methods inherited from interface org.camunda.bpm.model.xml.instance.ModelElementInstance
addChildElement, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs, updateAfterReplacement
-
Methods inherited from interface org.camunda.bpm.model.cmmn.instance.PlanItemDefinition
getDefaultControl, getName, setDefaultControl, setName
-
Methods inherited from interface org.camunda.bpm.model.cmmn.instance.Task
getInputParameters, getInputs, getOutputParameters, getOutputs, isBlocking, setIsBlocking
-
-
-
-
Method Detail
-
getProcess
java.lang.String getProcess()
-
setProcess
void setProcess(java.lang.String process)
-
getProcessExpression
ProcessRefExpression getProcessExpression()
-
setProcessExpression
void setProcessExpression(ProcessRefExpression processExpression)
-
getParameterMappings
java.util.Collection<ParameterMapping> getParameterMappings()
-
getCamundaProcessBinding
java.lang.String getCamundaProcessBinding()
camunda extensions
-
setCamundaProcessBinding
void setCamundaProcessBinding(java.lang.String camundaProcessBinding)
-
getCamundaProcessVersion
java.lang.String getCamundaProcessVersion()
-
setCamundaProcessVersion
void setCamundaProcessVersion(java.lang.String camundaProcessVersion)
-
getCamundaProcessTenantId
java.lang.String getCamundaProcessTenantId()
-
setCamundaProcessTenantId
void setCamundaProcessTenantId(java.lang.String camundaProcessTenantId)
-
-