Package org.apereo.cas.config
Class CasRestPasswordManagementAutoConfiguration
java.lang.Object
org.apereo.cas.config.CasRestPasswordManagementAutoConfiguration
@EnableConfigurationProperties(org.apereo.cas.configuration.CasConfigurationProperties.class)
@ConditionalOnFeatureEnabled(feature=PasswordManagement,
module="rest")
@AutoConfiguration
public class CasRestPasswordManagementAutoConfiguration
extends Object
- Since:
- 5.2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.apereo.cas.pm.PasswordManagementServicepasswordChangeService(org.springframework.web.client.RestTemplate passwordChangeServiceRestTemplate, org.apereo.cas.configuration.CasConfigurationProperties casProperties, org.apereo.cas.util.crypto.CipherExecutor passwordManagementCipherExecutor, org.apereo.cas.pm.PasswordHistoryService passwordHistoryService) org.springframework.web.client.RestTemplatepasswordChangeServiceRestTemplate(org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-
Constructor Details
-
CasRestPasswordManagementAutoConfiguration
public CasRestPasswordManagementAutoConfiguration()
-
-
Method Details
-
passwordChangeService
@RefreshScope(proxyMode=DEFAULT) @Bean @ConditionalOnMissingBean(name="restPasswordChangeService") public org.apereo.cas.pm.PasswordManagementService passwordChangeService(@Qualifier("passwordChangeServiceRestTemplate") org.springframework.web.client.RestTemplate passwordChangeServiceRestTemplate, org.apereo.cas.configuration.CasConfigurationProperties casProperties, @Qualifier("passwordManagementCipherExecutor") org.apereo.cas.util.crypto.CipherExecutor passwordManagementCipherExecutor, @Qualifier("passwordHistoryService") org.apereo.cas.pm.PasswordHistoryService passwordHistoryService) -
passwordChangeServiceRestTemplate
@RefreshScope(proxyMode=DEFAULT) @Bean @ConditionalOnMissingBean(name="passwordChangeServiceRestTemplate") public org.springframework.web.client.RestTemplate passwordChangeServiceRestTemplate(org.apereo.cas.configuration.CasConfigurationProperties casProperties)
-