Examples of WorkflowData


Examples of org.apache.airavata.workflow.model.wf.WorkflowData

  public List<WorkflowData> getAllWorkflows() throws AiravataAPIInvocationException {
    List<WorkflowData> list = new ArrayList<WorkflowData>();
    List<String> workflowTemplateIds = getWorkflowTemplateIds();
    try {
      for (String id : workflowTemplateIds) {
        list.add(new WorkflowData(id,null,false));
      }
      List<String> publishedWorkflowNames = getClient().getRegistryClient().getPublishedWorkflowNames();
      for (String id : publishedWorkflowNames) {
        list.add(new WorkflowData(id,null,false));
      }
      return list;
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
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.