Interface MessageEventDefinition
-
- All Superinterfaces:
BaseElement,BpmnModelElementInstance,EventDefinition,ModelElementInstance,RootElement
- All Known Implementing Classes:
MessageEventDefinitionImpl
public interface MessageEventDefinition extends EventDefinition
The BPMN messageEventDefinition element- Author:
- Sebastian Menski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCamundaClass()camunda extensionsStringgetCamundaDelegateExpression()StringgetCamundaExpression()StringgetCamundaResultVariable()StringgetCamundaTaskPriority()StringgetCamundaTopic()StringgetCamundaType()MessagegetMessage()OperationgetOperation()voidsetCamundaClass(String camundaClass)voidsetCamundaDelegateExpression(String camundaExpression)voidsetCamundaExpression(String camundaExpression)voidsetCamundaResultVariable(String camundaResultVariable)voidsetCamundaTaskPriority(String taskPriority)voidsetCamundaTopic(String camundaTopic)voidsetCamundaType(String camundaType)voidsetMessage(Message message)voidsetOperation(Operation operation)-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BaseElement
getDiagramElement, getDocumentations, getExtensionElements, getId, setExtensionElements, setId
-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BpmnModelElementInstance
builder, getScope, isScope
-
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
-
getMessage
Message getMessage()
-
setMessage
void setMessage(Message message)
-
getOperation
Operation getOperation()
-
setOperation
void setOperation(Operation operation)
-
getCamundaClass
String getCamundaClass()
camunda extensions
-
setCamundaClass
void setCamundaClass(String camundaClass)
-
getCamundaDelegateExpression
String getCamundaDelegateExpression()
-
setCamundaDelegateExpression
void setCamundaDelegateExpression(String camundaExpression)
-
getCamundaExpression
String getCamundaExpression()
-
setCamundaExpression
void setCamundaExpression(String camundaExpression)
-
getCamundaResultVariable
String getCamundaResultVariable()
-
setCamundaResultVariable
void setCamundaResultVariable(String camundaResultVariable)
-
getCamundaTopic
String getCamundaTopic()
-
setCamundaTopic
void setCamundaTopic(String camundaTopic)
-
getCamundaType
String getCamundaType()
-
setCamundaType
void setCamundaType(String camundaType)
-
getCamundaTaskPriority
String getCamundaTaskPriority()
-
setCamundaTaskPriority
void setCamundaTaskPriority(String taskPriority)
-
-