Uses of Class
com.nimbusds.oauth2.sdk.AuthorizationRequest
-
Packages that use AuthorizationRequest Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing core OAuth 2.0 concepts.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing core OpenID Connect concepts.com.nimbusds.openid.connect.sdk.op OpenID Connect Provider (OP) classes. -
-
Uses of AuthorizationRequest in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return AuthorizationRequest Modifier and Type Method Description AuthorizationRequest
AuthorizationRequest.Builder. build()
Builds a new authorisation request.AuthorizationRequest
PushedAuthorizationRequest. getAuthorizationRequest()
Returns the pushed authorisation request.static AuthorizationRequest
AuthorizationRequest. parse(HTTPRequest httpRequest)
Parses an authorisation request from the specified HTTP request.static AuthorizationRequest
AuthorizationRequest. parse(String query)
Parses an authorisation request from the specified URI query string.static AuthorizationRequest
AuthorizationRequest. parse(URI uri)
Parses an authorisation request from the specified URI.static AuthorizationRequest
AuthorizationRequest. parse(URI uri, String query)
Parses an authorisation request from the specified URI and query string.static AuthorizationRequest
AuthorizationRequest. parse(URI uri, Map<String,List<String>> params)
Parses an authorisation request from the specified URI and query parameters.static AuthorizationRequest
AuthorizationRequest. parse(Map<String,List<String>> params)
Parses an authorisation request from the specified URI query parameters.Constructors in com.nimbusds.oauth2.sdk with parameters of type AuthorizationRequest Constructor Description Builder(AuthorizationRequest request)
Creates a new authorisation request builder from the specified request.PushedAuthorizationRequest(URI uri, ClientAuthentication clientAuth, AuthorizationRequest authzRequest)
Creates a new authenticated pushed authorisation request for a confidential client.PushedAuthorizationRequest(URI uri, AuthorizationRequest authzRequest)
Creates a new pushed authorisation request for a public client. -
Uses of AuthorizationRequest in com.nimbusds.openid.connect.sdk
Subclasses of AuthorizationRequest in com.nimbusds.openid.connect.sdk Modifier and Type Class Description class
AuthenticationRequest
OpenID Connect authentication request. -
Uses of AuthorizationRequest in com.nimbusds.openid.connect.sdk.op
Methods in com.nimbusds.openid.connect.sdk.op with parameters of type AuthorizationRequest Modifier and Type Method Description void
ACRRequest. ensureACRSupport(AuthorizationRequest authzRequest, List<ACR> supportedACRs)
Ensures all requested essential ACR values are supported by those supported by the OpenID provider.static ACRRequest
ACRRequest. resolve(AuthorizationRequest authzRequest)
Resolves the requested essential and voluntary ACR values from the specified OAuth 2.0 authorisation request / OpenID authentication request.
-