Examples of TaskActivityBehavior


Examples of org.activiti.engine.impl.bpmn.behavior.TaskActivityBehavior

  }
 
  // Task
 
  public TaskActivityBehavior createTaskActivityBehavior(Task task) {
    return new TaskActivityBehavior();
  }
View Full Code Here

Examples of org.activiti.engine.impl.bpmn.behavior.TaskActivityBehavior

  /**
   * Parses a task with no specific type (behaves as passthrough).
   */
  public ActivityImpl parseTask(Element taskElement, ScopeImpl scope) {
    ActivityImpl activity = createActivityOnScope(taskElement, scope);
    activity.setActivityBehavior(new TaskActivityBehavior());
   
    activity.setAsync(isAsync(taskElement));
    activity.setExclusive(isExclusive(taskElement));

    parseExecutionListenersOnScope(taskElement, activity);
View Full Code Here

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

  /**
   * Parses a task with no specific type (behaves as passthrough).
   */
  public ActivityImpl parseTask(Element taskElement, ScopeImpl scope) {
    ActivityImpl activity = createActivityOnScope(taskElement, scope);
    activity.setActivityBehavior(new TaskActivityBehavior());

    parseAsynchronousContinuation(taskElement, activity);

    parseExecutionListenersOnScope(taskElement, activity);

View Full Code Here

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

  /**
   * Parses a task with no specific type (behaves as passthrough).
   */
  public ActivityImpl parseTask(Element taskElement, ScopeImpl scope) {
    ActivityImpl activity = createActivityOnScope(taskElement, scope);
    activity.setActivityBehavior(new TaskActivityBehavior());

    parseAsynchronousContinuation(taskElement, activity);

    parseExecutionListenersOnScope(taskElement, activity);

View Full Code Here

Examples of org.camunda.bpm.engine.impl.cmmn.behavior.TaskActivityBehavior

    Task task = (Task) getDefinition(element);
    activity.setProperty("isBlocking", task.isBlocking());
  }

  protected CmmnActivityBehavior getActivityBehavior() {
    return new TaskActivityBehavior();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.