Password Management - Custom

You may also inject your own implementation for password management into CAS that would itself handle account updates and retrievals. In order to do this, you will need to design a configuration class that roughly matches the following:

1
2
3
4
5
6
7
8
9
10
11
package org.apereo.cas.pm;

@AutoConfiguration
@EnableConfigurationProperties(CasConfigurationProperties.class)
public class MyPasswordConfiguration {

    @Bean
    public PasswordManagementService passwordChangeService() {
        ...
    }
}

See this guide to learn more about how to register configurations into the CAS runtime.