public class CasAuthenticationProvider extends Object implements AuthenticationProvider, org.springframework.beans.factory.InitializingBean, org.springframework.context.MessageSourceAware
AuthenticationProvider implementation that integrates with JA-SIG Central Authentication Service
(CAS).This AuthenticationProvider is capable of validating UsernamePasswordAuthenticationToken requests which contain a principal name equal to either CasProcessingFilter.CAS_STATEFUL_IDENTIFIER or CasProcessingFilter.CAS_STATELESS_IDENTIFIER. It can also
validate a previously created CasAuthenticationToken.
| Modifier and Type | Field and Description |
|---|---|
protected org.springframework.context.support.MessageSourceAccessor |
messages |
| Constructor and Description |
|---|
CasAuthenticationProvider() |
| Modifier and Type | Method and Description |
|---|---|
void |
afterPropertiesSet() |
Authentication |
authenticate(Authentication authentication)
Performs authentication with the same contract as
AuthenticationManager.authenticate(Authentication). |
CasAuthoritiesPopulator |
getCasAuthoritiesPopulator() |
CasProxyDecider |
getCasProxyDecider() |
String |
getKey() |
StatelessTicketCache |
getStatelessTicketCache() |
TicketValidator |
getTicketValidator() |
void |
setCasAuthoritiesPopulator(CasAuthoritiesPopulator casAuthoritiesPopulator) |
void |
setCasProxyDecider(CasProxyDecider casProxyDecider) |
void |
setKey(String key) |
void |
setMessageSource(org.springframework.context.MessageSource messageSource) |
void |
setStatelessTicketCache(StatelessTicketCache statelessTicketCache) |
void |
setTicketValidator(TicketValidator ticketValidator) |
boolean |
supports(Class authentication)
Returns
true if this AuthenticationProvider supports the indicated
Authentication object. |
public void afterPropertiesSet()
throws Exception
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBeanExceptionpublic Authentication authenticate(Authentication authentication) throws AuthenticationException
AuthenticationProviderAuthenticationManager.authenticate(Authentication).authenticate in interface AuthenticationProviderauthentication - the authentication request object.null if the
AuthenticationProvider is unable to support authentication of the passed
Authentication object. In such a case, the next AuthenticationProvider that
supports the presented Authentication class will be tried.AuthenticationException - if authentication fails.public CasAuthoritiesPopulator getCasAuthoritiesPopulator()
public CasProxyDecider getCasProxyDecider()
public String getKey()
public StatelessTicketCache getStatelessTicketCache()
public TicketValidator getTicketValidator()
public void setCasAuthoritiesPopulator(CasAuthoritiesPopulator casAuthoritiesPopulator)
public void setCasProxyDecider(CasProxyDecider casProxyDecider)
public void setKey(String key)
public void setMessageSource(org.springframework.context.MessageSource messageSource)
setMessageSource in interface org.springframework.context.MessageSourceAwarepublic void setStatelessTicketCache(StatelessTicketCache statelessTicketCache)
public void setTicketValidator(TicketValidator ticketValidator)
public boolean supports(Class authentication)
AuthenticationProvidertrue if this AuthenticationProvider supports the indicated
Authentication object.
Returning true does not guarantee an AuthenticationProvider will be able to
authenticate the presented instance of the Authentication class. It simply indicates it can support
closer evaluation of it. An AuthenticationProvider can still return null from the
AuthenticationProvider.authenticate(Authentication) method to indicate another AuthenticationProvider should be
tried.
Selection of an AuthenticationProvider capable of performing authentication is
conducted at runtime the ProviderManager.
supports in interface AuthenticationProviderauthentication - DOCUMENT ME!true if the implementation can more closely evaluate the Authentication class
presentedCopyright © 2016. All rights reserved.