Package se.inera.ifv.casebox.controller.vo

Examples of se.inera.ifv.casebox.controller.vo.UserForm


            log.error(e.getMessage());
            mav.getModel().put("error", e.getMessageCode());
        }
        List<User> users = userService.findAllUsers();
        mav.addObject("users", users);
        mav.addObject("form", new UserForm());
        return mav;
    }
View Full Code Here


    @RequestMapping(method=RequestMethod.GET)
    public ModelAndView userOverview() {
        ModelAndView mav = new ModelAndView("admin/user");
        List<User> users = userService.findAllUsers();
        mav.addObject("users", users);
        mav.addObject("form", new UserForm());
        return mav;
    }
View Full Code Here

TOP

Related Classes of se.inera.ifv.casebox.controller.vo.UserForm

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.