Package net.sf.pmr.core.service

Examples of net.sf.pmr.core.service.ProjectService.findByPersistanceId()


     */
    private void populateListBox(final HttpServletRequest request) {
       
        // get the list of developper for the project to populate the listBox
        ProjectService projectService = CoreObjectFactory.getProjectService();
        Project basicProject = projectService.findByPersistanceId(((Integer) request.getSession()
                                                                                              .getAttribute("basicProject.persistanceId")).intValue());
        Set<User> members = basicProject.getMembers();
        // ajout d'une ligne vide
        User user = new UserImpl();
        user.setCompany(null);
View Full Code Here


    // find the basicProject, if a project is needed
    if (StringUtils.isNotEmpty((String) request
        .getParameter("persistanceId"))) {

      return projectService
          .findByPersistanceId(Integer.parseInt(request.getParameter(
              "persistanceId").toString()));

    } else {
      // else return null
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.