Package org.keycloak.authentication
Interface AuthenticationFlow
- 
- All Known Implementing Classes:
- ClientAuthenticationFlow,- DefaultAuthenticationFlow,- FormAuthenticationFlow
 
 public interface AuthenticationFlow- Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringBASIC_FLOWstatic StringCLIENT_FLOWstatic StringFORM_FLOW
 - 
Method SummaryAll 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_FLOWstatic final String BASIC_FLOW - See Also:
- Constant Field Values
 
 - 
FORM_FLOWstatic final String FORM_FLOW - See Also:
- Constant Field Values
 
 - 
CLIENT_FLOWstatic final String CLIENT_FLOW - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
processActionjavax.ws.rs.core.Response processAction(String actionExecution) 
 - 
processFlowjavax.ws.rs.core.Response processFlow() 
 - 
isSuccessfulboolean isSuccessful() 
 - 
getFlowExceptionsdefault List<AuthenticationFlowException> getFlowExceptions() 
 
- 
 
-