Package com.atlassian.crowd.model.user

Examples of com.atlassian.crowd.model.user.User


    public static String getCrowdUsername(HttpServletRequest request) {
        ensureAuthenticator();

        try {
            User user = authenticator.getUser(request);
            if (user != null)
                return user.getName();
        }
        catch (ApplicationPermissionException e) {
            LOG.warn("Exception during Crowd authentication attempt", e);
        }
        catch (InvalidAuthenticationException e) {
View Full Code Here

TOP

Related Classes of com.atlassian.crowd.model.user.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.