Package org.cipres.treebase.domain.study

Examples of org.cipres.treebase.domain.study.StudyHome.findByName()


 
  public static Submission getPseudoSubmission(String name) {
    if (pseudoSubmission == null) {
      StudyHome sh = ContextManager.getStudyHome();
      SubmissionService ss = ContextManager.getSubmissionService();
      Collection<Study> pseudoStudies = sh.findByName(name, true);
      if (pseudoStudies.size() == 0) {
        pseudoSubmission = ss.createSubmission(null, null);
        pseudoSubmission.getStudy().setName(name);
        ss.save(pseudoSubmission.getStudy());
        sh.flush();
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.