package org.keycloak.authentication; import javax.ws.rs.core.Response; /** * @author Bill Burke * @version $Revision: 1 $ */ public interface AuthenticationFlow { String BASIC_FLOW = "basic-flow"; String FORM_FLOW = "form-flow"; Response processAction(String actionExecution); Response processFlow(); }