Package org.apache.shiro.authc.credential

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


                             Map<String, UserManager> userManagerMap)
  {
    this.userManager = userManager;
    this.securitySystem = securitySystem;
    this.userManagerMap = userManagerMap;
    setCredentialsMatcher(new Sha1CredentialsMatcher());
    setName(ROLE);
    setAuthenticationCachingEnabled(false); // we authz only, no authc done by this realm
    setAuthorizationCachingEnabled(true);
  }
View Full Code Here

TOP

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

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.