Package org.apereo.cas.web.flow.config
Class CasCoreWebflowConfiguration.CasCoreWebflowExceptionHandlingConfiguration
- java.lang.Object
-
- org.apereo.cas.web.flow.config.CasCoreWebflowConfiguration.CasCoreWebflowExceptionHandlingConfiguration
-
- Enclosing class:
- CasCoreWebflowConfiguration
@Configuration(value="CasCoreWebflowExceptionHandlingConfiguration", proxyBeanMethods=false) @EnableConfigurationProperties(org.apereo.cas.configuration.CasConfigurationProperties.class) public static class CasCoreWebflowConfiguration.CasCoreWebflowExceptionHandlingConfiguration extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CasCoreWebflowExceptionHandlingConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<org.apereo.cas.ticket.AbstractTicketException>defaultCasWebflowAbstractTicketExceptionHandler(org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<org.apereo.cas.authentication.AuthenticationException>defaultCasWebflowAuthenticationExceptionHandler(org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandlergenericCasWebflowExceptionHandler(org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<java.lang.Exception>groovyCasWebflowAuthenticationExceptionHandler(org.springframework.context.ConfigurableApplicationContext applicationContext, org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
-
-
Method Detail
-
groovyCasWebflowAuthenticationExceptionHandler
@ConditionalOnMissingBean(name="groovyCasWebflowAuthenticationExceptionHandler") @Bean @RefreshScope(proxyMode=DEFAULT) @ConditionalOnProperty(name="cas.authn.errors.groovy.location") public org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<java.lang.Exception> groovyCasWebflowAuthenticationExceptionHandler(org.springframework.context.ConfigurableApplicationContext applicationContext, org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
defaultCasWebflowAuthenticationExceptionHandler
@ConditionalOnMissingBean(name="defaultCasWebflowAuthenticationExceptionHandler") @Bean @RefreshScope(proxyMode=DEFAULT) public org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<org.apereo.cas.authentication.AuthenticationException> defaultCasWebflowAuthenticationExceptionHandler(@Qualifier("handledAuthenticationExceptions") org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)
-
defaultCasWebflowAbstractTicketExceptionHandler
@ConditionalOnMissingBean(name="defaultCasWebflowAbstractTicketExceptionHandler") @Bean @RefreshScope(proxyMode=DEFAULT) public org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler<org.apereo.cas.ticket.AbstractTicketException> defaultCasWebflowAbstractTicketExceptionHandler(@Qualifier("handledAuthenticationExceptions") org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)
-
genericCasWebflowExceptionHandler
@ConditionalOnMissingBean(name="genericCasWebflowExceptionHandler") @Bean @RefreshScope(proxyMode=DEFAULT) public org.apereo.cas.web.flow.authentication.CasWebflowExceptionHandler genericCasWebflowExceptionHandler(@Qualifier("handledAuthenticationExceptions") org.apereo.cas.web.flow.authentication.CasWebflowExceptionCatalog handledAuthenticationExceptions)
-
-