Examples of AiravataAPIInvocationException


Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  @Override
  public void setExperimentUser(String experimentId, String user) throws AiravataAPIInvocationException {
    try {
      getClient().getRegistryClient().updateExperimentExecutionUser(experimentId, user);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  @Override
  public ExperimentUser getExperimentUser(String experimentId)throws AiravataAPIInvocationException {
    try {
      return new ExperimentUser(experimentId,getClient().getRegistryClient().getExperimentExecutionUser(experimentId));
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  public void setExperimentMetadata(String experimentId, String metadata)
      throws AiravataAPIInvocationException {
    try {
      getClient().getRegistryClient().updateExperimentMetadata(experimentId, metadata);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
   
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  @Override
  public ExperimentMetadata getExperimentMetadata(String experimentId)throws AiravataAPIInvocationException {
    try {
      return new ExperimentMetadata(experimentId, getClient().getRegistryClient().getExperimentMetadata(experimentId));
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

    @Override
    public boolean isExperimentNameExist(String experimentName) throws AiravataAPIInvocationException {
        try {
            return getClient().getRegistryClient().isExperimentNameExist(experimentName);
        } catch (Exception e) {
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

    @Override
  public List<String> getExperimentIdList(String owner) throws AiravataAPIInvocationException{
    try {
      return getClient().getRegistryClient().getExperimentIdByUser(owner);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  public List<ExperimentData> getWorkflowExperimentDataList(String user)
      throws AiravataAPIInvocationException {
    try {
      return  getClient().getRegistryClient().getExperimentByUser(user);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  public List<ExperimentData> getWorkflowExperimentData(String user,
      int pageSize, int pageNo) throws AiravataAPIInvocationException {
    try {
      return  getClient().getRegistryClient().getExperimentByUser(user, pageSize, pageNo);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  public WorkflowExecutionData getWorkflowInstanceData(String experimentId,
      String workflowInstanceId) throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getWorkflowInstanceData(workflowInstanceId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException

  }

  @Override
  public String[] getWorkflowExecutionOutputNames(String exeperimentId)
      throws AiravataAPIInvocationException {
    throw new AiravataAPIInvocationException(new Exception("Not implemented"));
  }
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.