package org.apereo.cas.adaptors.duo.web.flow.action; import org.apereo.cas.web.flow.resolver.CasWebflowEventResolver; import org.springframework.webflow.action.AbstractAction; import org.springframework.webflow.execution.Event; import org.springframework.webflow.execution.RequestContext; /** * This is {@link DuoAuthenticationWebflowAction}. * * @author Misagh Moayyed * @since 5.0.0 */ public class DuoAuthenticationWebflowAction extends AbstractAction { private final CasWebflowEventResolver duoAuthenticationWebflowEventResolver; public DuoAuthenticationWebflowAction(final CasWebflowEventResolver duoAuthenticationWebflowEventResolver) { this.duoAuthenticationWebflowEventResolver = duoAuthenticationWebflowEventResolver; } @Override protected Event doExecute(final RequestContext requestContext) throws Exception { return this.duoAuthenticationWebflowEventResolver.resolveSingle(requestContext); } }