Interface Case
-
- All Superinterfaces:
CmmnElement
,CmmnModelElementInstance
,ModelElementInstance
- All Known Implementing Classes:
CaseImpl
public interface Case extends CmmnElement
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Integer
getCamundaHistoryTimeToLive()
Deprecated.String
getCamundaHistoryTimeToLiveString()
CaseFileModel
getCaseFileModel()
CasePlanModel
getCasePlanModel()
Collection<CaseRole>
getCaseRoles()
Deprecated.Collection<InputCaseParameter>
getInputs()
String
getName()
Collection<OutputCaseParameter>
getOutputs()
CaseRoles
getRoles()
void
setCamundaHistoryTimeToLive(Integer historyTimeToLive)
Deprecated.void
setCamundaHistoryTimeToLiveString(String historyTimeToLive)
void
setCaseFileModel(CaseFileModel caseFileModel)
void
setCasePlanModel(CasePlanModel casePlanModel)
void
setName(String name)
void
setRoles(CaseRoles roles)
-
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
-
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
getCaseRoles
@Deprecated Collection<CaseRole> getCaseRoles()
Deprecated.
-
getRoles
CaseRoles getRoles()
-
setRoles
void setRoles(CaseRoles roles)
-
getInputs
Collection<InputCaseParameter> getInputs()
-
getOutputs
Collection<OutputCaseParameter> getOutputs()
-
getCasePlanModel
CasePlanModel getCasePlanModel()
-
setCasePlanModel
void setCasePlanModel(CasePlanModel casePlanModel)
-
getCaseFileModel
CaseFileModel getCaseFileModel()
-
setCaseFileModel
void setCaseFileModel(CaseFileModel caseFileModel)
-
getCamundaHistoryTimeToLive
@Deprecated Integer getCamundaHistoryTimeToLive()
Deprecated.
-
setCamundaHistoryTimeToLive
@Deprecated void setCamundaHistoryTimeToLive(Integer historyTimeToLive)
Deprecated.
-
getCamundaHistoryTimeToLiveString
String getCamundaHistoryTimeToLiveString()
-
setCamundaHistoryTimeToLiveString
void setCamundaHistoryTimeToLiveString(String historyTimeToLive)
-
-