Examples of GetHistoricIdentityLinksForTaskCmd


Examples of org.activiti.engine.impl.cmd.GetHistoricIdentityLinksForTaskCmd

    return new NativeHistoricActivityInstanceQueryImpl(commandExecutor);
  }
 
  @Override
  public List<HistoricIdentityLink> getHistoricIdentityLinksForProcessInstance(String processInstanceId) {
    return commandExecutor.execute(new GetHistoricIdentityLinksForTaskCmd(null, processInstanceId));
  }
View Full Code Here

Examples of org.activiti.engine.impl.cmd.GetHistoricIdentityLinksForTaskCmd

    return commandExecutor.execute(new GetHistoricIdentityLinksForTaskCmd(null, processInstanceId));
  }
 
  @Override
  public List<HistoricIdentityLink> getHistoricIdentityLinksForTask(String taskId) {
    return commandExecutor.execute(new GetHistoricIdentityLinksForTaskCmd(taskId, null));
  }
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.