2015-06-25 01:07:38 +00:00
|
|
|
package org.keycloak.authentication;
|
|
|
|
|
|
|
|
import javax.ws.rs.core.Response;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
|
|
|
|
* @version $Revision: 1 $
|
|
|
|
*/
|
|
|
|
public interface AuthenticationFlow {
|
2015-07-02 15:25:51 +00:00
|
|
|
String BASIC_FLOW = "basic-flow";
|
|
|
|
String FORM_FLOW = "form-flow";
|
|
|
|
|
2015-06-25 01:07:38 +00:00
|
|
|
Response processAction(String actionExecution);
|
|
|
|
Response processFlow();
|
|
|
|
}
|