use of org.apereo.cas.impl.plans.BlockAuthenticationContingencyPlan in project cas by apereo.
the class ElectronicFenceConfiguration method blockAuthenticationContingencyPlan.
@ConditionalOnMissingBean(name = "blockAuthenticationContingencyPlan")
@Bean
@RefreshScope
public AuthenticationRiskContingencyPlan blockAuthenticationContingencyPlan() {
final BlockAuthenticationContingencyPlan b = new BlockAuthenticationContingencyPlan();
configureContingencyPlan(b);
return b;
}
Aggregations