Package org.jtalks.jcommune.model.dto

Examples of org.jtalks.jcommune.model.dto.RegisterUserDto


     */
    @RequestMapping(value = "/user/new", method = RequestMethod.GET)
    public ModelAndView registrationPage(HttpServletRequest request, Locale locale) {
        Map<String, String> registrationPlugins = getRegistrationPluginsHtml(request, locale);
        return new ModelAndView(REGISTRATION)
                .addObject("newUser", new RegisterUserDto())
                .addObject("registrationPlugins", registrationPlugins);
    }
View Full Code Here

TOP

Related Classes of org.jtalks.jcommune.model.dto.RegisterUserDto

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.