当前位置: 首页>>代码示例>>Java>>正文


Java DelegateExecution.getBpmnModelElementInstance方法代码示例

本文整理汇总了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.");
    }
}
 
开发者ID:LIBCAS,项目名称:ARCLib,代码行数:27,代码来源:MessageThrowDelegate.java

示例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;
    }
}
 
开发者ID:zambrovski,项目名称:mqtt-camunda-bpm,代码行数:12,代码来源:MqttThrowingEvent.java

示例3: notify

import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void notify(DelegateExecution execution) throws Exception {
  modelInstance = execution.getBpmnModelInstance();
  flowElement = execution.getBpmnModelElementInstance();
}
 
开发者ID:camunda,项目名称:camunda-bpm-platform,代码行数:5,代码来源:ModelExecutionContextExecutionListener.java

示例4: execute

import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void execute(DelegateExecution execution) throws Exception {
  modelInstance = execution.getBpmnModelInstance();
  serviceTask = (ServiceTask) execution.getBpmnModelElementInstance();
}
 
开发者ID:camunda,项目名称:camunda-bpm-platform,代码行数:5,代码来源:ModelExecutionContextServiceTask.java

示例5: execute

import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
@Override
public void execute(DelegateExecution execution) throws Exception {

  bpmnModelElementInstance = execution.getBpmnModelElementInstance();
  bpmnModelInstance = execution.getBpmnModelInstance();

}
 
开发者ID:camunda,项目名称:camunda-bpm-platform,代码行数:8,代码来源:BpmnElementRetrievalDelegate.java


注:本文中的org.camunda.bpm.engine.delegate.DelegateExecution.getBpmnModelElementInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。