Package org.apereo.cas.config
Class TokenAuthenticationConfiguration
- java.lang.Object
-
- org.apereo.cas.config.TokenAuthenticationConfiguration
-
@EnableConfigurationProperties(org.apereo.cas.configuration.CasConfigurationProperties.class) @Configuration(value="TokenAuthenticationConfiguration", proxyBeanMethods=false) public class TokenAuthenticationConfiguration extends java.lang.ObjectThis isTokenAuthenticationConfiguration.- Since:
- 5.2.0
-
-
Constructor Summary
Constructors Constructor Description TokenAuthenticationConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apereo.cas.authentication.AuthenticationEventExecutionPlanConfigurertokenAuthenticationEventExecutionPlanConfigurer(org.apereo.cas.authentication.AuthenticationHandler tokenAuthenticationHandler, org.apereo.cas.authentication.principal.PrincipalResolver defaultPrincipalResolver)org.apereo.cas.authentication.AuthenticationHandlertokenAuthenticationHandler(org.apereo.cas.configuration.CasConfigurationProperties casProperties, org.apereo.cas.authentication.principal.PrincipalFactory tokenPrincipalFactory, org.apereo.cas.services.ServicesManager servicesManager)org.apereo.cas.authentication.principal.PrincipalFactorytokenPrincipalFactory()
-
-
-
Method Detail
-
tokenPrincipalFactory
@ConditionalOnMissingBean(name="tokenPrincipalFactory") @Bean @RefreshScope(proxyMode=DEFAULT) public org.apereo.cas.authentication.principal.PrincipalFactory tokenPrincipalFactory()
-
tokenAuthenticationHandler
@ConditionalOnMissingBean(name="tokenAuthenticationHandler") @Bean @RefreshScope(proxyMode=DEFAULT) public org.apereo.cas.authentication.AuthenticationHandler tokenAuthenticationHandler(org.apereo.cas.configuration.CasConfigurationProperties casProperties, @Qualifier("tokenPrincipalFactory") org.apereo.cas.authentication.principal.PrincipalFactory tokenPrincipalFactory, @Qualifier("servicesManager") org.apereo.cas.services.ServicesManager servicesManager)
-
tokenAuthenticationEventExecutionPlanConfigurer
@ConditionalOnMissingBean(name="tokenAuthenticationEventExecutionPlanConfigurer") @Bean public org.apereo.cas.authentication.AuthenticationEventExecutionPlanConfigurer tokenAuthenticationEventExecutionPlanConfigurer(@Qualifier("tokenAuthenticationHandler") org.apereo.cas.authentication.AuthenticationHandler tokenAuthenticationHandler, @Qualifier("defaultPrincipalResolver") org.apereo.cas.authentication.principal.PrincipalResolver defaultPrincipalResolver)
-
-