Package org.apache.shiro.authc.credential

Examples of org.apache.shiro.authc.credential.SimpleCredentialsMatcher


    /*-------------------------------------------
    |         C O N S T R U C T O R S           |
    ============================================*/
    public AuthenticatingRealm() {
        this(null, new SimpleCredentialsMatcher());
    }
View Full Code Here


    public AuthenticatingRealm() {
        this(null, new SimpleCredentialsMatcher());
    }

    public AuthenticatingRealm(CacheManager cacheManager) {
        this(cacheManager, new SimpleCredentialsMatcher());
    }
View Full Code Here

    this.ldapManager = checkNotNull(ldapManager);
    setName(LdapPlugin.REALM_NAME);
    setAuthenticationCachingEnabled(true);
    setAuthorizationCachingEnabled(true);
    // using simple credentials matcher
    setCredentialsMatcher(new SimpleCredentialsMatcher());

    eventBus.register(this);
  }
View Full Code Here

    /*-------------------------------------------
    |         C O N S T R U C T O R S           |
    ============================================*/
    public AuthenticatingRealm() {
        this(null, new SimpleCredentialsMatcher());
    }
View Full Code Here

    public AuthenticatingRealm() {
        this(null, new SimpleCredentialsMatcher());
    }

    public AuthenticatingRealm(CacheManager cacheManager) {
        this(cacheManager, new SimpleCredentialsMatcher());
    }
View Full Code Here

TOP

Related Classes of org.apache.shiro.authc.credential.SimpleCredentialsMatcher

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.