use of org.springframework.webflow.engine.model.EndStateModel in project cas by apereo.
the class DuoSecurityMultifactorWebflowConfigurer method createDuoSuccessEndState.
private static void createDuoSuccessEndState(final List<AbstractStateModel> states) {
states.add(new EndStateModel(CasWebflowConstants.STATE_ID_SUCCESS));
states.add(new EndStateModel(CasWebflowConstants.STATE_ID_MFA_DENIED));
states.add(new EndStateModel(CasWebflowConstants.STATE_ID_MFA_UNAVAILABLE));
}
Aggregations