Package org.keycloak.authentication
Interface AuthenticationFlow
-
- All Known Implementing Classes:
ClientAuthenticationFlow,DefaultAuthenticationFlow,FormAuthenticationFlow
public interface AuthenticationFlow- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description static StringBASIC_FLOWstatic StringCLIENT_FLOWstatic StringFORM_FLOW
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<AuthenticationFlowException>getFlowExceptions()booleanisSuccessful()javax.ws.rs.core.ResponseprocessAction(String actionExecution)javax.ws.rs.core.ResponseprocessFlow()
-
-
-
Field Detail
-
BASIC_FLOW
static final String BASIC_FLOW
- See Also:
- Constant Field Values
-
FORM_FLOW
static final String FORM_FLOW
- See Also:
- Constant Field Values
-
CLIENT_FLOW
static final String CLIENT_FLOW
- See Also:
- Constant Field Values
-
-
Method Detail
-
processAction
javax.ws.rs.core.Response processAction(String actionExecution)
-
processFlow
javax.ws.rs.core.Response processFlow()
-
isSuccessful
boolean isSuccessful()
-
getFlowExceptions
default List<AuthenticationFlowException> getFlowExceptions()
-
-