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