Package com.moreemrecife.jpa

Examples of com.moreemrecife.jpa.User


        try {
            //            ctx = new InitialContext();
            //            EntityManager entityManager = (EntityManager) ctx.lookup("RealEstateJPA");
            EntityManagerHelper.set(entityManager);

            User u = AccessControlDao.selectUser(login);
            UserTO to = convertUserTO(u);

            return to;
        } catch (Exception e) {
            logger.log(Level.SEVERE, "Error on call to retrieveUserInfo()", e);
View Full Code Here


    }

    @Override
    public boolean validateAccess(String login, String password) {
        EntityManagerHelper.set(entityManager);
        User u = AccessControlDao.selectUser(login);
        if (u != null && u.getPassword().equals(password)) // TODO improve the password match routine!!!
            return true;
        return false;
    }
View Full Code Here

TOP

Related Classes of com.moreemrecife.jpa.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.