return property;
}
public WorkflowExecution getWorkflowExecution(String experimentId)
throws RegistryException {
WorkflowExecution workflowExecution = new WorkflowExecutionImpl();
workflowExecution.setExperimentId(experimentId);
workflowExecution.setExecutionStatus(getWorkflowExecutionStatus(experimentId));
workflowExecution.setUser(getWorkflowExecutionUser(experimentId));
workflowExecution.setMetadata(getWorkflowExecutionMetadata(experimentId));
workflowExecution.setOutput(getWorkflowExecutionOutput(experimentId));
workflowExecution.setServiceInput(searchWorkflowExecutionServiceInput(experimentId,".*",".*"));
workflowExecution.setServiceOutput(searchWorkflowExecutionServiceOutput(experimentId,".*",".*"));
return workflowExecution;
}