Examples of ExperimentDataRetriever


Examples of org.apache.airavata.persistance.registry.jpa.resources.ExperimentDataRetriever

            return provenanceRegistry.getExperimentByUser(user);
        }
        if(user == null){
            user = jpa.getWorker().getUser();
        }
        return (new ExperimentDataRetriever()).getExperiments(user);
  }
View Full Code Here

Examples of org.apache.airavata.persistance.registry.jpa.resources.ExperimentDataRetriever

  public List<ExperimentData> getExperiments(HashMap<String,String> params)
      throws RegistryException {
        if (provenanceRegistry != null){
            return provenanceRegistry.getExperiments(params);
        }
        return (new ExperimentDataRetriever()).getExperiments(params);
  }
View Full Code Here

Examples of org.apache.airavata.persistance.registry.jpa.resources.ExperimentDataRetriever

            return provenanceRegistry.getExperimentMetaInformation(experimentId);
        }
        if (!isExperimentExists(experimentId)){
            throw new ExperimentDoesNotExistsException(experimentId);
        }
        ExperimentDataRetriever experimentDataRetriever = new ExperimentDataRetriever();
        return experimentDataRetriever.getExperimentMetaInformation(experimentId);
  }
View Full Code Here

Examples of org.apache.airavata.persistance.registry.jpa.resources.ExperimentDataRetriever

  public List<ExperimentData> getAllExperimentMetaInformation(String user)
      throws RegistryException {
        if (provenanceRegistry != null){
            return provenanceRegistry.getAllExperimentMetaInformation(user);
        }
        ExperimentDataRetriever experimentDataRetriever = new ExperimentDataRetriever();
        return experimentDataRetriever.getAllExperimentMetaInformation(user);
  }
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.