Package org.activiti.engine.runtime

Examples of org.activiti.engine.runtime.JobQuery.processInstanceId()


   
    if (allRequestParams.containsKey("id")) {
      query.jobId(allRequestParams.get("id"));
    }
    if (allRequestParams.containsKey("processInstanceId")) {
      query.processInstanceId(allRequestParams.get("processInstanceId"));
    }
    if (allRequestParams.containsKey("executionId")) {
      query.executionId(allRequestParams.get("executionId"));
    }
    if (allRequestParams.containsKey("processDefinitionId")) {
View Full Code Here


    Date dueDateHigherThen = RequestUtil.getDate(getQuery(), "duedate-ht");
    Date dueDateHigherThenOrEquals = RequestUtil.getDate(getQuery(), "duedate-htoe");

    JobQuery jobQuery = ActivitiUtil.getManagementService().createJobQuery();
    if (processInstanceId != null) {
      jobQuery.processInstanceId(processInstanceId);
    }
    if (withRetriesLeft) {
      jobQuery.withRetriesLeft();
    }
    if (executable) {
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.