Uses of Interface
org.apache.shiro.authc.Authenticator
-
Packages that use Authenticator Package Description org.apache.shiro.authc Core interfaces and exceptions concerning Authentication (the act of logging-in).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).org.apache.shiro.mgt Provides the masterSecurityManagerinterface and a default implementation hierarchy for managing all aspects of Shiro's functionality in an application. -
-
Uses of Authenticator in org.apache.shiro.authc
Classes in org.apache.shiro.authc that implement Authenticator Modifier and Type Class Description classAbstractAuthenticatorSuperclass for almost allAuthenticatorimplementations that performs the common work around authentication attempts. -
Uses of Authenticator in org.apache.shiro.authc.pam
Classes in org.apache.shiro.authc.pam that implement Authenticator Modifier and Type Class Description classModularRealmAuthenticatorAModularRealmAuthenticatordelegates account lookups to a pluggable (modular) collection ofRealms. -
Uses of Authenticator in org.apache.shiro.mgt
Subinterfaces of Authenticator in org.apache.shiro.mgt Modifier and Type Interface Description interfaceSecurityManagerASecurityManagerexecutes all security operations for all Subjects (aka users) across a single application.Classes in org.apache.shiro.mgt that implement Authenticator Modifier and Type Class Description classAuthenticatingSecurityManagerShiro support of aSecurityManagerclass hierarchy that delegates all authentication operations to a wrappedAuthenticatorinstance.classAuthorizingSecurityManagerShiro support of aSecurityManagerclass hierarchy that delegates all authorization (access control) operations to a wrappedAuthorizerinstance.classCachingSecurityManagerA very basic starting point for the SecurityManager interface that merely provides logging and caching support.classDefaultSecurityManagerThe Shiro framework's default concrete implementation of theSecurityManagerinterface, based around a collection ofRealms.classRealmSecurityManagerShiro support of aSecurityManagerclass hierarchy based around a collection ofRealms.classSessionsSecurityManagerShiro support of aSecurityManagerclass hierarchy that delegates allsessionoperations to a wrappedSessionManagerinstance.Methods in org.apache.shiro.mgt that return Authenticator Modifier and Type Method Description AuthenticatorAuthenticatingSecurityManager. getAuthenticator()Returns the delegateAuthenticatorinstance that this SecurityManager uses to perform all authentication operations.Methods in org.apache.shiro.mgt with parameters of type Authenticator Modifier and Type Method Description voidAuthenticatingSecurityManager. setAuthenticator(Authenticator authenticator)Sets the delegateAuthenticatorinstance that this SecurityManager uses to perform all authentication operations.
-