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

Source Code of org.apache.airavata.registry.api.impl.WorkflowExecutionImpl

/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/

package org.apache.airavata.registry.api.impl;

import java.util.ArrayList;
import java.util.List;

import org.apache.airavata.registry.api.WorkflowExecution;
import org.apache.airavata.registry.api.WorkflowExecutionStatus;
import org.apache.airavata.registry.api.workflow.WorkflowIOData;
import org.apache.airavata.registry.api.workflow.WorkflowServiceIOData;

public class WorkflowExecutionImpl implements WorkflowExecution{
  private WorkflowExecutionStatus executionStatus;
  private String user;
  private List<WorkflowServiceIOData> serviceInput;
  private List<WorkflowServiceIOData> serviceOutput;
  private List<WorkflowIOData> output;
  private String experimentId;
  private String metadata;
 
  public String getMetadata() {
    return metadata;
  }
  public void setMetadata(String metadata) {
    this.metadata = metadata;
  }
  public String getExperimentId() {
    return experimentId;
  }
  public void setExperimentId(String experimentId) {
    this.experimentId = experimentId;
  }
  public String getTopic() {
    return experimentId;
  }
  public void setTopic(String topic) {
    this.experimentId = topic;
  }
  public WorkflowExecutionStatus getExecutionStatus() {
    return executionStatus;
  }
  public void setExecutionStatus(WorkflowExecutionStatus executionStatus) {
    this.executionStatus = executionStatus;
  }
  public String getUser() {
    return user;
  }
  public void setUser(String user) {
    this.user = user;
  }
  public List<WorkflowServiceIOData> getServiceInput() {
    if (serviceInput==null){
      serviceInput=new ArrayList<WorkflowServiceIOData>();
    }
    return serviceInput;
  }
  public void setServiceInput(List<WorkflowServiceIOData> serviceInput) {
    this.serviceInput = serviceInput;
  }
  public List<WorkflowServiceIOData> getServiceOutput() {
    if (serviceOutput==null){
      serviceOutput=new ArrayList<WorkflowServiceIOData>();
    }
    return serviceOutput;
  }
  public void setServiceOutput(List<WorkflowServiceIOData> serviceOutput) {
    this.serviceOutput = serviceOutput;
  }
  public List<WorkflowIOData> getOutput() {
    if (output==null){
      output=new ArrayList<WorkflowIOData>();
    }
    return output;
  }
  public void setOutput(List<WorkflowIOData> output) {
    this.output = output;
  }
 
  public void addServiceInput(WorkflowServiceIOData serviceInput) {
    getServiceInput().add(serviceInput);
  }
  public void addServiceOutput(WorkflowServiceIOData serviceOutput) {
    getServiceOutput().add(serviceOutput);
  }
  public void addOutput(WorkflowIOData output) {
    getOutput().add(output);
  }
 
  public WorkflowServiceIOData getServiceInput(String nodeId) {
    return (WorkflowServiceIOData)getIOData(nodeId, getServiceInput());
  }
  public WorkflowServiceIOData getServiceOutput(String nodeId) {
    return (WorkflowServiceIOData)getIOData(nodeId, getServiceOutput());
  }
  public WorkflowIOData getOutput(String nodeId) {
    return (WorkflowServiceIOData)getIOData(nodeId, getOutput());
  }

  private WorkflowIOData getIOData(String nodeId, List<?> list) {
    for (Object data : list) {
      WorkflowIOData iodata=(WorkflowIOData)data;
      if (iodata.getNodeId().equals(nodeId)){
        return iodata;
      }
    }
    return null;
  }
}
TOP

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

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.