Package org.keycloak.broker.provider
Class AuthenticationRequest
- java.lang.Object
-
- org.keycloak.broker.provider.AuthenticationRequest
-
public class AuthenticationRequest extends Object
- Author:
- Pedro Igor
-
-
Constructor Summary
Constructors Constructor Description AuthenticationRequest(KeycloakSession session, RealmModel realm, AuthenticationSessionModel authSession, HttpRequest httpRequest, javax.ws.rs.core.UriInfo uriInfo, IdentityBrokerState state, String redirectUri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationSessionModel
getAuthenticationSession()
HttpRequest
getHttpRequest()
RealmModel
getRealm()
String
getRedirectUri()
Returns the redirect url that must be included in an authentication request in order to process responses from an identity provider.KeycloakSession
getSession()
IdentityBrokerState
getState()
javax.ws.rs.core.UriInfo
getUriInfo()
-
-
-
Constructor Detail
-
AuthenticationRequest
public AuthenticationRequest(KeycloakSession session, RealmModel realm, AuthenticationSessionModel authSession, HttpRequest httpRequest, javax.ws.rs.core.UriInfo uriInfo, IdentityBrokerState state, String redirectUri)
-
-
Method Detail
-
getSession
public KeycloakSession getSession()
-
getUriInfo
public javax.ws.rs.core.UriInfo getUriInfo()
-
getState
public IdentityBrokerState getState()
-
getHttpRequest
public HttpRequest getHttpRequest()
-
getRealm
public RealmModel getRealm()
-
getRedirectUri
public String getRedirectUri()
Returns the redirect url that must be included in an authentication request in order to process responses from an identity provider.
- Returns:
-
getAuthenticationSession
public AuthenticationSessionModel getAuthenticationSession()
-
-