Package org.keycloak.authentication
Class ClientAuthenticationFlow
- java.lang.Object
-
- org.keycloak.authentication.ClientAuthenticationFlow
-
- All Implemented Interfaces:
AuthenticationFlow
public class ClientAuthenticationFlow extends Object implements AuthenticationFlow
- Author:
- Marek Posolda
-
-
Field Summary
-
Fields inherited from interface org.keycloak.authentication.AuthenticationFlow
BASIC_FLOW, CLIENT_FLOW, FORM_FLOW
-
-
Constructor Summary
Constructors Constructor Description ClientAuthenticationFlow(AuthenticationProcessor processor, AuthenticationFlowModel flow)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected List<AuthenticationExecutionModel>
findExecutionsToRun()
boolean
isSuccessful()
javax.ws.rs.core.Response
processAction(String actionExecution)
javax.ws.rs.core.Response
processFlow()
protected javax.ws.rs.core.Response
processResult(AuthenticationProcessor.Result result)
javax.ws.rs.core.Response
sendChallenge(AuthenticationProcessor.Result result, AuthenticationExecutionModel execution)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.authentication.AuthenticationFlow
getFlowExceptions
-
-
-
-
Constructor Detail
-
ClientAuthenticationFlow
public ClientAuthenticationFlow(AuthenticationProcessor processor, AuthenticationFlowModel flow)
-
-
Method Detail
-
processAction
public javax.ws.rs.core.Response processAction(String actionExecution)
- Specified by:
processAction
in interfaceAuthenticationFlow
-
processFlow
public javax.ws.rs.core.Response processFlow()
- Specified by:
processFlow
in interfaceAuthenticationFlow
-
findExecutionsToRun
protected List<AuthenticationExecutionModel> findExecutionsToRun()
-
processResult
protected javax.ws.rs.core.Response processResult(AuthenticationProcessor.Result result)
-
sendChallenge
public javax.ws.rs.core.Response sendChallenge(AuthenticationProcessor.Result result, AuthenticationExecutionModel execution)
-
isSuccessful
public boolean isSuccessful()
- Specified by:
isSuccessful
in interfaceAuthenticationFlow
-
-