Interface DecisionTask
-
- All Superinterfaces:
CmmnElement
,CmmnModelElementInstance
,ModelElementInstance
,PlanItemDefinition
,Task
- All Known Implementing Classes:
DecisionTaskImpl
public interface DecisionTask extends Task
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCamundaDecisionBinding()
java.lang.String
getCamundaDecisionTenantId()
java.lang.String
getCamundaDecisionVersion()
java.lang.String
getCamundaMapDecisionResult()
java.lang.String
getCamundaResultVariable()
Camunda extensionsjava.lang.String
getDecision()
DecisionRefExpression
getDecisionExpression()
java.util.Collection<ParameterMapping>
getParameterMappings()
void
setCamundaDecisionBinding(java.lang.String camundaDecisionBinding)
void
setCamundaDecisionTenantId(java.lang.String camundaDecisionTenantId)
void
setCamundaDecisionVersion(java.lang.String camundaDecisionVersion)
void
setCamundaMapDecisionResult(java.lang.String camundaMapDecisionResult)
void
setCamundaResultVariable(java.lang.String camundaResultVariable)
void
setDecision(java.lang.String decision)
void
setDecisionExpression(DecisionRefExpression decisionExpression)
-
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
-
getDecision
java.lang.String getDecision()
-
setDecision
void setDecision(java.lang.String decision)
-
getDecisionExpression
DecisionRefExpression getDecisionExpression()
-
setDecisionExpression
void setDecisionExpression(DecisionRefExpression decisionExpression)
-
getParameterMappings
java.util.Collection<ParameterMapping> getParameterMappings()
-
getCamundaResultVariable
java.lang.String getCamundaResultVariable()
Camunda extensions
-
setCamundaResultVariable
void setCamundaResultVariable(java.lang.String camundaResultVariable)
-
getCamundaDecisionBinding
java.lang.String getCamundaDecisionBinding()
-
setCamundaDecisionBinding
void setCamundaDecisionBinding(java.lang.String camundaDecisionBinding)
-
getCamundaDecisionVersion
java.lang.String getCamundaDecisionVersion()
-
setCamundaDecisionVersion
void setCamundaDecisionVersion(java.lang.String camundaDecisionVersion)
-
getCamundaDecisionTenantId
java.lang.String getCamundaDecisionTenantId()
-
setCamundaDecisionTenantId
void setCamundaDecisionTenantId(java.lang.String camundaDecisionTenantId)
-
getCamundaMapDecisionResult
java.lang.String getCamundaMapDecisionResult()
-
setCamundaMapDecisionResult
void setCamundaMapDecisionResult(java.lang.String camundaMapDecisionResult)
-
-