use of org.apereo.cas.web.flow.configurer.plan.DefaultCasWebflowExecutionPlan in project cas by apereo.
the class CasWebflowContextConfiguration method casWebflowExecutionPlan.
@Autowired
@Bean
public CasWebflowExecutionPlan casWebflowExecutionPlan(final List<CasWebflowExecutionPlanConfigurer> configurers) {
final DefaultCasWebflowExecutionPlan plan = new DefaultCasWebflowExecutionPlan();
configurers.forEach(c -> c.configureWebflowExecutionPlan(plan));
plan.execute();
return plan;
}
Aggregations