Package org.brixcms.rmiserver

Examples of org.brixcms.rmiserver.AuthenticationException


    }

    public User loginUser(String login, String password) throws AuthenticationException {
        User user = users.query(login, password);
        if (user == null) {
            throw new AuthenticationException();
        }
        userId = user.getId();
        return user;
    }
View Full Code Here

TOP

Related Classes of org.brixcms.rmiserver.AuthenticationException

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.