package org.apereo.cas.adaptors.u2f.web.flow; 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 U2FAuthenticationWebflowAction}. * * @author Misagh Moayyed * @since 5.1.0 */ public class U2FAuthenticationWebflowAction extends AbstractAction { private final CasWebflowEventResolver u2fAuthenticationWebflowEventResolver; public U2FAuthenticationWebflowAction(final CasWebflowEventResolver casWebflowEventResolver) { this.u2fAuthenticationWebflowEventResolver = casWebflowEventResolver; } @Override protected Event doExecute(final RequestContext requestContext) throws Exception { return this.u2fAuthenticationWebflowEventResolver.resolveSingle(requestContext); } }