Uses of Interface
org.apache.shiro.authc.pam.AuthenticationStrategy
-
Packages that use AuthenticationStrategy Package Description org.apache.shiro.authc.pam Support for PAM, or Pluggable Authentication Modules, which is the capability to authenticate a user against multiple configurable (pluggable) modules (Shiro calls theseRealms). -
-
Uses of AuthenticationStrategy in org.apache.shiro.authc.pam
Classes in org.apache.shiro.authc.pam that implement AuthenticationStrategy Modifier and Type Class Description classAbstractAuthenticationStrategyAbstract base implementation for Shiro's concreteAuthenticationStrategyimplementations.classAllSuccessfulStrategyAuthenticationStrategy implementation that requires all configured realms to successfully process the submitted AuthenticationToken during the log-in attempt.classAtLeastOneSuccessfulStrategyAuthenticationStrategy implementation that requires at least one configured realm to successfully process the submitted AuthenticationToken during the log-in attempt.classFirstSuccessfulStrategyAuthenticationStrategyimplementation that only accepts the account data from the first successfully consulted Realm and ignores all subsequent realms.Methods in org.apache.shiro.authc.pam that return AuthenticationStrategy Modifier and Type Method Description AuthenticationStrategyModularRealmAuthenticator. getAuthenticationStrategy()Returns theAuthenticationStrategyutilized by this modular authenticator during a multi-realm log-in attempt.Methods in org.apache.shiro.authc.pam with parameters of type AuthenticationStrategy Modifier and Type Method Description voidModularRealmAuthenticator. setAuthenticationStrategy(AuthenticationStrategy authenticationStrategy)Allows overriding the defaultAuthenticationStrategyutilized during multi-realm log-in attempts.
-