Exemplo n.º 1
0
  public ExecutableFlow(Flow flow) {
    this.projectId = flow.getProjectId();
    this.flowId = flow.getId();
    this.version = flow.getVersion();

    this.setFlow(flow);
  }
Exemplo n.º 2
0
  public ExecutableFlow(int executionId, Flow flow) {
    this.projectId = flow.getProjectId();
    this.flowId = flow.getId();
    this.version = flow.getVersion();
    this.executionId = executionId;

    this.setFlow(flow);
  }
Exemplo n.º 3
0
 public void updateFlow(Project project, Flow flow) throws ProjectManagerException {
   projectLoader.updateFlow(project, flow.getVersion(), flow);
 }