Package com.mossle.security.impl

Examples of com.mossle.security.impl.UserStatusDetailsImpl


        boolean enabled = true;
        Collection<GrantedAuthority> authSet = this
                .loadUserAuthorities(userInfo.getAuthorities());

        List<String> attributes = userInfo.getAttributes();
        UserStatusDetailsImpl userStatusDetailsImpl = new UserStatusDetailsImpl(
                username, password, enabled, authSet);
        userStatusDetailsImpl.setAttributes(attributes);
        userStatusDetailsImpl.setId(userInfo.getId());
        userStatusDetailsImpl.setDisplayName(displayName);
        userStatusDetailsImpl.setScopeId(userInfo.getScopeId());

        return userStatusDetailsImpl;
    }
View Full Code Here

TOP

Related Classes of com.mossle.security.impl.UserStatusDetailsImpl

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.