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 String
getCamundaClass()
camunda extensionsString
getCamundaDelegateExpression()
String
getCamundaExpression()
String
getCamundaResultVariable()
String
getCamundaTaskPriority()
String
getCamundaTopic()
String
getCamundaType()
Message
getMessage()
Operation
getOperation()
void
setCamundaClass(String camundaClass)
void
setCamundaDelegateExpression(String camundaExpression)
void
setCamundaExpression(String camundaExpression)
void
setCamundaResultVariable(String camundaResultVariable)
void
setCamundaTaskPriority(String taskPriority)
void
setCamundaTopic(String camundaTopic)
void
setCamundaType(String camundaType)
void
setMessage(Message message)
void
setOperation(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)
-
-