Package org.apache.airavata.registry.api.workflow

Examples of org.apache.airavata.registry.api.workflow.WorkflowExecutionError


            return provenanceRegistry.getWorkflowExecutionErrors(experimentId, workflowInstanceId);
        }
    List<WorkflowExecutionError> result=new ArrayList<WorkflowExecutionError>();
    List<ExecutionErrorResource> executionErrors = jpa.getWorker().getExperiment(experimentId).getData().getExecutionErrors(Source.WORKFLOW.toString(), experimentId, workflowInstanceId, null, null);
    for (ExecutionErrorResource errorResource : executionErrors) {
      WorkflowExecutionError error = new WorkflowExecutionError();
      setupValues(errorResource, error);
      error.setExperimentId(errorResource.getExperimentDataResource().getExperimentID());
      error.setWorkflowInstanceId(errorResource.getWorkflowDataResource().getWorkflowInstanceID());
      result.add(error);
    }
    return result;
  }
View Full Code Here


            return provenanceRegistry.getWorkflowExecutionErrors(experimentId, workflowInstanceId);
        }
    List<WorkflowExecutionError> result=new ArrayList<WorkflowExecutionError>();
    List<ExecutionErrorResource> executionErrors = jpa.getWorker().getExperiment(experimentId).getData().getExecutionErrors(Source.WORKFLOW.toString(), experimentId, workflowInstanceId, null, null);
    for (ExecutionErrorResource errorResource : executionErrors) {
      WorkflowExecutionError error = new WorkflowExecutionError();
      setupValues(errorResource, error);
      error.setExperimentId(errorResource.getExperimentDataResource().getExperimentID());
      error.setWorkflowInstanceId(errorResource.getWorkflowDataResource().getWorkflowInstanceID());
      result.add(error);
    }
    return result;
  }
View Full Code Here

            return provenanceRegistry.getWorkflowExecutionErrors(experimentId, workflowInstanceId);
        }
    List<WorkflowExecutionError> result=new ArrayList<WorkflowExecutionError>();
    List<ExecutionErrorResource> executionErrors = jpa.getWorker().getExperiment(experimentId).getData().getExecutionErrors(Source.WORKFLOW.toString(), experimentId, workflowInstanceId, null, null);
    for (ExecutionErrorResource errorResource : executionErrors) {
      WorkflowExecutionError error = new WorkflowExecutionError();
      setupValues(errorResource, error);
      error.setExperimentId(errorResource.getExperimentDataResource().getExperimentID());
      error.setWorkflowInstanceId(errorResource.getWorkflowDataResource().getWorkflowInstanceID());
      result.add(error);
    }
    return result;
  }
View Full Code Here

            return provenanceRegistry.getWorkflowExecutionErrors(experimentId, workflowInstanceId);
        }
    List<WorkflowExecutionError> result=new ArrayList<WorkflowExecutionError>();
    List<ExecutionErrorResource> executionErrors = jpa.getWorker().getExperiment(experimentId).getData().getExecutionErrors(Source.WORKFLOW.toString(), experimentId, workflowInstanceId, null, null);
    for (ExecutionErrorResource errorResource : executionErrors) {
      WorkflowExecutionError error = new WorkflowExecutionError();
      setupValues(errorResource, error);
      error.setExperimentId(errorResource.getExperimentDataResource().getExperimentID());
      error.setWorkflowInstanceId(errorResource.getWorkflowDataResource().getWorkflowInstanceID());
      result.add(error);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.apache.airavata.registry.api.workflow.WorkflowExecutionError

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.