Package org.apache.airavata.registry.api.impl

Examples of org.apache.airavata.registry.api.impl.WorkflowExecutionImpl


  }

  @Override
  public WorkflowExecution getWorkflowExecution(String experimentId)
      throws RegistryException {
    WorkflowExecutionImpl w = new WorkflowExecutionImpl();
    w.setExperimentId(experimentId);
    w.setWorkflowInstanceName(getWorkflowExecutionName(experimentId));
    w.setExecutionStatus(getWorkflowExecutionStatus(experimentId));
    w.setMetadata(getWorkflowExecutionMetadata(experimentId));
    w.setOutput(getWorkflowExecutionOutput(experimentId));
    w.setServiceInput(searchWorkflowExecutionServiceInput(experimentId, ".*", ".*"));
    w.setServiceOutput(searchWorkflowExecutionServiceOutput(experimentId, ".*", ".*"));
    w.setUser(getWorkflowExecutionUser(experimentId));
    w.setTopic(experimentId);
    return w;
  }
View Full Code Here

TOP

Related Classes of org.apache.airavata.registry.api.impl.WorkflowExecutionImpl

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.