Examples of MyProgressionListener


Examples of org.cipres.treebase.web.model.MyProgressionListener

    /* pass List<File> to service layer */
    // get user's Submission Object
    Study study = ControllerUtil.findStudy(request, mStudyService);
    Submission submission = study.getSubmission();
    MyProgressionListener listener = new MyProgressionListener();

    UploadFileResult uploadResult = getSubmissionService().addNexusFilesJDBC(
      submission,
      files,
      listener);
View Full Code Here

Examples of org.cipres.treebase.web.model.MyProgressionListener

      return new ModelAndView(getCancelView());
    }

    Study study = ControllerUtil.findStudy(request, getStudyService());
    Submission submission = study.getSubmission();
    MyProgressionListener listener = new MyProgressionListener();

    getSubmissionService().addNexusFiles(submission, files, listener);
    getStudyService().addNexusFiles(study, files);

    return new ModelAndView(getSuccessView());
View Full Code Here

Examples of org.cipres.treebase.web.model.MyProgressionListener

      return new ModelAndView(getCancelView());
    }

    Study study = ControllerUtil.findStudy(request, getStudyService());
    Submission submission = study.getSubmission();
    MyProgressionListener listener = new MyProgressionListener();

    getSubmissionService().addNexusFiles(submission, files, listener);
    getStudyService().addNexusFiles(study, files);

    return new ModelAndView(getSuccessView());
View Full Code Here

Examples of org.cipres.treebase.web.model.MyProgressionListener

                files.remove(i);
                files.add(i,copyFile);

                submission.getStudy().addNexusFile(files.get(i).getName(), TreebaseUtil.readFileToString(files.get(i)));
              }
          MyProgressionListener listener = new MyProgressionListener();
          getSubmissionService().addNexusFilesJDBC(submission, files, listener);
         
          // save Study object to session         
          //mSubmissionService.save(submission);
          mSubmissionService.save(study)
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.