Interface CaseTask
-
- All Superinterfaces:
CmmnElement
,CmmnModelElementInstance
,ModelElementInstance
,PlanItemDefinition
,Task
- All Known Implementing Classes:
CaseTaskImpl
public interface CaseTask extends Task
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCamundaCaseBinding()
camunda extensionsString
getCamundaCaseTenantId()
String
getCamundaCaseVersion()
String
getCase()
CaseRefExpression
getCaseExpression()
Collection<ParameterMapping>
getParameterMappings()
void
setCamundaCaseBinding(String camundaCaseBinding)
void
setCamundaCaseTenantId(String camundaCaseTenantId)
void
setCamundaCaseVersion(String camundaCaseVersion)
void
setCase(String caseInstance)
void
setCaseExpression(CaseRefExpression caseExpression)
-
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
-
getCase
String getCase()
-
setCase
void setCase(String caseInstance)
-
getCaseExpression
CaseRefExpression getCaseExpression()
-
setCaseExpression
void setCaseExpression(CaseRefExpression caseExpression)
-
getParameterMappings
Collection<ParameterMapping> getParameterMappings()
-
getCamundaCaseBinding
String getCamundaCaseBinding()
camunda extensions
-
setCamundaCaseBinding
void setCamundaCaseBinding(String camundaCaseBinding)
-
getCamundaCaseVersion
String getCamundaCaseVersion()
-
setCamundaCaseVersion
void setCamundaCaseVersion(String camundaCaseVersion)
-
getCamundaCaseTenantId
String getCamundaCaseTenantId()
-
setCamundaCaseTenantId
void setCamundaCaseTenantId(String camundaCaseTenantId)
-
-