WORKERS AHEAD!
You are viewing the development documentation for the Apereo CAS server. The functionality presented here is not officially released yet. This is a work in progress and will be continually updated as development moves forward. You are most encouraged to test the changes presented.
Account (Self-Service) Registration - Custom Provisioning
Account registration requests can be submitted to a custom implementation that is responsible for managing and storing the account in the appropriate systems of record.
1
2
3
4
5
6
@Bean
public AccountRegistrationProvisionerConfigurer customProvisioningConfigurer() {
return () -> {
return new CustomAccountRegistrationProvisioner();
};
}
See this guide to learn more about how to register configurations into the CAS runtime.