Package org.camunda.bpm.model.cmmn.instance

Examples of org.camunda.bpm.model.cmmn.instance.HumanTask


      Stage stage = (Stage) definition;
      parseStage(stage, newActivity);
      context.setParent(parent);

    } else if (definition instanceof HumanTask) {
      HumanTask humanTask = (HumanTask) definition;

      // According to the specification: A HumanTask can only contain
      // one planningTable, the XSD allows multiple planningTables!
      Collection<PlanningTable> planningTables = humanTask.getPlanningTables();
      for (PlanningTable planningTable : planningTables) {
        parsePlanningTable(planningTable, parent);
      }

    }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.model.cmmn.instance.HumanTask

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.