Package gri.tasks.managers.workflows

Examples of gri.tasks.managers.workflows.WorkflowOutputReference


  job1.setInput("message", "dude");
  wkfl.addJob(job1);

  JobSubmission job2 = new JobSubmission("dan.encryption.Digest.md5");
  job2.setInput("message", "dude");
  job2.setInput("message", new WorkflowOutputReference(0, "digest"));
  wkfl.addJob(job2);
 
  return wkfl;
    }
View Full Code Here


  Element outputElem = elem.getChild("output");
  if (outputElem == null)
      throw new MissingElementException("output", elem);
  String outputName = outputElem.getText();

  return new WorkflowOutputReference(taskIndex, outputName);
    }
View Full Code Here

TOP

Related Classes of gri.tasks.managers.workflows.WorkflowOutputReference

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.