Package net.sf.pmr.core.domain.user

Examples of net.sf.pmr.core.domain.user.User


    private void populateListForProjectSummary(final HttpServletRequest request) {

        // get the service
        ToDoService toDoService = ToDoObjectFactory.getToDoService();

        User user = (User) request.getSession().getAttribute("user");
       
        // list the todos
        List<ToDo> todos = toDoService.findByProjectPersistanceIdAndUserPersistanceId(
            ((Integer) request.getSession().getAttribute("basicProject.persistanceId")).intValue(), user.getPersistanceId());


        // number of toDo
        request.setAttribute("numberOfToDo", todos.size());
View Full Code Here

TOP

Related Classes of net.sf.pmr.core.domain.user.User

Copyright © 2018 www.massapicom. 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.