Uses of Interface
org.apache.shiro.authc.credential.CredentialsMatcher

Packages that use CredentialsMatcher
org.apache.shiro.authc.credential Support for validating credentials (such as passwords or X509 certificates) during authentication via the CredentialsMatcher interface and its supporting implementations. 
org.apache.shiro.realm Components and sub-packages used in supporting the core Realm interface. 
 

Uses of CredentialsMatcher in org.apache.shiro.authc.credential
 

Classes in org.apache.shiro.authc.credential that implement CredentialsMatcher
 class AllowAllCredentialsMatcher
          A credentials matcher that always returns true when matching credentials no matter what arguments are passed in.
 class HashedCredentialsMatcher
          A HashedCredentialMatcher provides support for hashing of supplied AuthenticationToken credentials before being compared to those in the AuthenticationInfo from the data store.
 class Md2CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD2 hashed.
 class Md5CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD5 hashed.
 class Sha1CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA hashed.
 class Sha256CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-256 hashed.
 class Sha384CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-384 hashed.
 class Sha512CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-512 hashed.
 class SimpleCredentialsMatcher
          Simple CredentialsMatcher implementation.
 

Uses of CredentialsMatcher in org.apache.shiro.realm
 

Methods in org.apache.shiro.realm that return CredentialsMatcher
 CredentialsMatcher AuthenticatingRealm.getCredentialsMatcher()
          Returns the CredentialsMatcher used during an authentication attempt to verify submitted credentials with those stored in the system.
 

Methods in org.apache.shiro.realm with parameters of type CredentialsMatcher
 void AuthenticatingRealm.setCredentialsMatcher(CredentialsMatcher credentialsMatcher)
          Sets the CrendialsMatcher used during an authentication attempt to verify submitted credentials with those stored in the system.
 

Constructors in org.apache.shiro.realm with parameters of type CredentialsMatcher
AuthenticatingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
           
AuthenticatingRealm(CredentialsMatcher matcher)
           
AuthorizingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
           
AuthorizingRealm(CredentialsMatcher matcher)
           
 



Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.