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 String
getCamundaProcessBinding()
camunda extensionsString
getCamundaProcessTenantId()
String
getCamundaProcessVersion()
Collection<ParameterMapping>
getParameterMappings()
String
getProcess()
ProcessRefExpression
getProcessExpression()
void
setCamundaProcessBinding(String camundaProcessBinding)
void
setCamundaProcessTenantId(String camundaProcessTenantId)
void
setCamundaProcessVersion(String camundaProcessVersion)
void
setProcess(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
String getProcess()
-
setProcess
void setProcess(String process)
-
getProcessExpression
ProcessRefExpression getProcessExpression()
-
setProcessExpression
void setProcessExpression(ProcessRefExpression processExpression)
-
getParameterMappings
Collection<ParameterMapping> getParameterMappings()
-
getCamundaProcessBinding
String getCamundaProcessBinding()
camunda extensions
-
setCamundaProcessBinding
void setCamundaProcessBinding(String camundaProcessBinding)
-
getCamundaProcessVersion
String getCamundaProcessVersion()
-
setCamundaProcessVersion
void setCamundaProcessVersion(String camundaProcessVersion)
-
getCamundaProcessTenantId
String getCamundaProcessTenantId()
-
setCamundaProcessTenantId
void setCamundaProcessTenantId(String camundaProcessTenantId)
-
-