Class RemoteAuthenticationProvider
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean
,AuthenticationProvider
RemoteAuthenticationManager
to validate an
authentication request.
A new Authentication
object is created by this class comprising the
request Authentication
object's principal
,
credentials
and the GrantedAuthority
[]s returned by the
RemoteAuthenticationManager
.
The RemoteAuthenticationManager
should not require any special username or
password setting on the remoting client proxy factory to execute the call. Instead the
entire authentication request must be encapsulated solely within the
Authentication
request object. In practical terms this means the
RemoteAuthenticationManager
will not be protected by BASIC or any
other HTTP-level authentication.
If authentication fails, a RemoteAuthenticationException
will be thrown.
This exception should be caught and displayed to the user, enabling them to retry with
alternative credentials etc.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.authenticate
(Authentication authentication) Deprecated.Performs authentication with the same contract asAuthenticationManager.authenticate(Authentication)
.Deprecated.void
setRemoteAuthenticationManager
(RemoteAuthenticationManager remoteAuthenticationManager) Deprecated.boolean
Deprecated.Returnstrue
if thisAuthenticationProvider
supports the indicatedAuthentication
object.
-
Constructor Details
-
RemoteAuthenticationProvider
public RemoteAuthenticationProvider()Deprecated.
-
-
Method Details
-
afterPropertiesSet
public void afterPropertiesSet()Deprecated.- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
-
authenticate
Deprecated.Description copied from interface:AuthenticationProvider
Performs authentication with the same contract asAuthenticationManager.authenticate(Authentication)
.- Specified by:
authenticate
in interfaceAuthenticationProvider
- Parameters:
authentication
- the authentication request object.- Returns:
- a fully authenticated object including credentials. May return
null
if theAuthenticationProvider
is unable to support authentication of the passedAuthentication
object. In such a case, the nextAuthenticationProvider
that supports the presentedAuthentication
class will be tried. - Throws:
AuthenticationException
- if authentication fails.
-
getRemoteAuthenticationManager
Deprecated. -
setRemoteAuthenticationManager
Deprecated. -
supports
Deprecated.Description copied from interface:AuthenticationProvider
Returnstrue
if thisAuthenticationProvider
supports the indicatedAuthentication
object.Returning
true
does not guarantee anAuthenticationProvider
will be able to authenticate the presented instance of theAuthentication
class. It simply indicates it can support closer evaluation of it. AnAuthenticationProvider
can still returnnull
from theAuthenticationProvider.authenticate(Authentication)
method to indicate anotherAuthenticationProvider
should be tried.Selection of an
AuthenticationProvider
capable of performing authentication is conducted at runtime theProviderManager
.- Specified by:
supports
in interfaceAuthenticationProvider
- Returns:
true
if the implementation can more closely evaluate theAuthentication
class presented
-