Package org.camunda.bpm.engine.impl.bpmn.behavior

Examples of org.camunda.bpm.engine.impl.bpmn.behavior.TerminateEndEventActivityBehavior


          activity.setProperty("type", "cancelEndEvent");
          activity.setActivityBehavior(new CancelEndEventActivityBehavior());
        }
      } else if (terminateEventDefinition != null) {
        activity.setProperty("type", "terminateEndEvent");
        activity.setActivityBehavior(new TerminateEndEventActivityBehavior());
        activity.setCancelScope(true);
      } else if (messageEventDefinitionElement != null) {
        if (isServiceTaskLike(messageEventDefinitionElement)) {

          // CAM-436 same behaviour as service task
View Full Code Here


          activity.setProperty("type", "cancelEndEvent");
          activity.setActivityBehavior(new CancelEndEventActivityBehavior());
        }
      } else if (terminateEventDefinition != null) {
        activity.setProperty("type", "terminateEndEvent");
        activity.setActivityBehavior(new TerminateEndEventActivityBehavior());
        activity.setCancelScope(true);
      } else if (messageEventDefinitionElement != null) {
        if (isServiceTaskLike(messageEventDefinitionElement)) {

          // CAM-436 same behaviour as service task
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.impl.bpmn.behavior.TerminateEndEventActivityBehavior

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.