use of org.apereo.cas.oidc.web.flow.OidcAuthenticationContextWebflowEventEventResolver in project cas by apereo.
the class OidcConfiguration method oidcAuthenticationContextWebflowEventResolver.
@Autowired
@RefreshScope
@Bean
public CasWebflowEventResolver oidcAuthenticationContextWebflowEventResolver(@Qualifier("defaultAuthenticationSystemSupport") final AuthenticationSystemSupport authenticationSystemSupport) {
final CasWebflowEventResolver r = new OidcAuthenticationContextWebflowEventEventResolver(authenticationSystemSupport, centralAuthenticationService, servicesManager, ticketRegistrySupport, warnCookieGenerator, authenticationRequestServiceSelectionStrategies, multifactorAuthenticationProviderSelector);
this.initialAuthenticationAttemptWebflowEventResolver.addDelegate(r);
return r;
}
Aggregations