use of org.apereo.cas.web.flow.SurrogateWebflowEventResolver in project cas by apereo.
the class SurrogateWebflowEventResolutionConfiguration method surrogateWebflowEventResolver.
@ConditionalOnMissingBean(name = "surrogateWebflowEventResolver")
@Bean
public CasWebflowEventResolver surrogateWebflowEventResolver(@Qualifier("defaultAuthenticationSystemSupport") final AuthenticationSystemSupport authenticationSystemSupport) {
final CasWebflowEventResolver r = new SurrogateWebflowEventResolver(authenticationSystemSupport, centralAuthenticationService, servicesManager, ticketRegistrySupport, warnCookieGenerator, authenticationRequestServiceSelectionStrategies, selector, surrogateAuthenticationService);
this.initialAuthenticationAttemptWebflowEventResolver.addDelegate(r);
return r;
}
Aggregations