Apereo CAS 5.3- Custom accept authentication
0
I'm using cas-overlay-template version 5.3 (https://github.com/apereo/cas-overlay-template/tree/5.3) I want to customize the authenticationHandler, @Configuration("AcceptAuthenticationConfiguration") @EnableConfigurationProperties(CasConfigurationProperties.class) public class AcceptAuthenticationConfiguration implements AuthenticationEventExecutionPlanConfigurer { private static final org.slf4j.Logger LOGGER = LoggerFactory.getLogger(AcceptAuthenticationConfiguration.class); @Autowired private CasConfigurationProperties casProperties; This is how I show the value of casProperies: @RefreshScope @Bean public AuthenticationHandler myAuthenticationHandler() { LOGGER.debug("Location = ", casProperties.getServiceRegistry().getJson().getLocation())...