Package com.codeforces.graygoose.model

Examples of com.codeforces.graygoose.model.User


        return runValidation();
    }

    @Action("register")
    public void onRegister() {
        User newUser = new User();
        newUser.setEmail(email);
        newUser.setName(name);
        userDao.register(newUser, password);

        putSession("graygoose.user", userDao.findByEmailAndPassword(email, password));
        abortWithRedirect(DashboardPage.class);
    }
View Full Code Here


        return runValidation();
    }

    @Action("enter")
    public void onEnter() {
        User user = userDao.findByEmailAndPassword(email, password);
        putSession("graygoose.user", user);
        addMessage("Welcome, " + user.getName() + ".", Noty.Type.SUCCESS);
        abortWithRedirect(DashboardPage.class);
    }
View Full Code Here

TOP

Related Classes of com.codeforces.graygoose.model.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.