Package org.uberfire.security.server.auth

Examples of org.uberfire.security.server.auth.BasicUserPassAuthenticationScheme


@Alternative
public class PropertyAuthenticationManager extends SimpleUserPassAuthenticationManager {

    public PropertyAuthenticationManager( final SubjectPropertiesProvider propertiesProvider ) {
        super( new PropertyUserSource(),
               new BasicUserPassAuthenticationScheme(),
               null,
               propertiesProvider,
               Collections.<String, String>emptyMap() );
    }
View Full Code Here


    public JAASAuthenticationManager( final SubjectPropertiesProvider propertiesProvider,
                                      final String realm,
                                      final RolesMode mode ) {
        super( new JAASAuthenticationSource(),
               new BasicUserPassAuthenticationScheme(),
               null,
               propertiesProvider,
               new HashMap<String, String>() {{
                   if ( realm != null ) {
                       put( AUTH_DOMAIN_KEY, realm );
View Full Code Here

TOP

Related Classes of org.uberfire.security.server.auth.BasicUserPassAuthenticationScheme

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.