本文整理汇总了Java中org.camunda.bpm.engine.delegate.DelegateExecution.getBpmnModelElementInstance方法的典型用法代码示例。如果您正苦于以下问题:Java DelegateExecution.getBpmnModelElementInstance方法的具体用法?Java DelegateExecution.getBpmnModelElementInstance怎么用?Java DelegateExecution.getBpmnModelElementInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.camunda.bpm.engine.delegate.DelegateExecution
的用法示例。
在下文中一共展示了DelegateExecution.getBpmnModelElementInstance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMessageName
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
/**
* Retrieves the name of message from BPMN diagram
*
* @param execution Execution
* @return Message name
* @throws UnsupportedOperationException If the element where this delegate is used is not a message event or the message is not specified
*/
protected String getMessageName(DelegateExecution execution) {
FlowElement element = execution.getBpmnModelElementInstance();
if (element instanceof Event) {
MessageEventDefinition definition = (MessageEventDefinition) element
.getUniqueChildElementByType(MessageEventDefinition.class);
if (definition != null) {
Message message = definition.getMessage();
if (message != null) {
return message.getName();
}
}
throw new UnsupportedOperationException("Message must by specified in BPMN diagram.");
} else {
throw new UnsupportedOperationException("Only message events are supported with this delegate.");
}
}
示例2: getMessageName
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public static String getMessageName(DelegateExecution execution) {
try {
ThrowEvent event =(ThrowEvent) execution.getBpmnModelElementInstance();
MessageEventDefinition definition = (MessageEventDefinition)event.getEventDefinitions().iterator().next();
String topicPattern = definition.getMessage().getName();
return topicPattern;
} catch (Exception e) {
LOGGER.info("Cannot get the Message Name.", e);
return null;
}
}
示例3: notify
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void notify(DelegateExecution execution) throws Exception {
modelInstance = execution.getBpmnModelInstance();
flowElement = execution.getBpmnModelElementInstance();
}
示例4: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void execute(DelegateExecution execution) throws Exception {
modelInstance = execution.getBpmnModelInstance();
serviceTask = (ServiceTask) execution.getBpmnModelElementInstance();
}
示例5: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
@Override
public void execute(DelegateExecution execution) throws Exception {
bpmnModelElementInstance = execution.getBpmnModelElementInstance();
bpmnModelInstance = execution.getBpmnModelInstance();
}