Package org.apereo.cas.config
Class CasThrottlingConfiguration.CasThrottlingCoreConfiguration
- java.lang.Object
-
- org.apereo.cas.config.CasThrottlingConfiguration.CasThrottlingCoreConfiguration
-
- Enclosing class:
- CasThrottlingConfiguration
@Configuration(value="CasThrottlingCoreConfiguration", proxyBeanMethods=false) @EnableConfigurationProperties(org.apereo.cas.configuration.CasConfigurationProperties.class) public static class CasThrottlingConfiguration.CasThrottlingCoreConfiguration extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CasThrottlingCoreConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apereo.cas.throttle.ThrottledRequestFilterhttpPostMethodThrottlingRequestFilter()org.apereo.cas.throttle.ThrottledRequestExecutorthrottledRequestExecutor()org.apereo.cas.throttle.ThrottledRequestResponseHandlerthrottledRequestResponseHandler(org.apereo.cas.configuration.CasConfigurationProperties casProperties)org.apereo.cas.web.support.ThrottledSubmissionsStorethrottleSubmissionMap(org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
-
-
Method Detail
-
throttledRequestResponseHandler
@RefreshScope(proxyMode=DEFAULT) @Bean @ConditionalOnMissingBean(name="throttledRequestResponseHandler") public org.apereo.cas.throttle.ThrottledRequestResponseHandler throttledRequestResponseHandler(org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
throttledRequestExecutor
@RefreshScope(proxyMode=DEFAULT) @Bean @ConditionalOnMissingBean(name="throttledRequestExecutor") public org.apereo.cas.throttle.ThrottledRequestExecutor throttledRequestExecutor()
-
throttleSubmissionMap
@RefreshScope(proxyMode=DEFAULT) @ConditionalOnMissingBean(name="throttleSubmissionMap") @Bean public org.apereo.cas.web.support.ThrottledSubmissionsStore throttleSubmissionMap(org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
httpPostMethodThrottlingRequestFilter
@Bean @RefreshScope(proxyMode=DEFAULT) @ConditionalOnMissingBean(name="httpPostMethodThrottlingRequestFilter") public org.apereo.cas.throttle.ThrottledRequestFilter httpPostMethodThrottlingRequestFilter()
-
-