Uses of Class
com.nimbusds.oauth2.sdk.http.HTTPRequest
-
Packages that use HTTPRequest Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and authorisation server responses.com.nimbusds.oauth2.sdk.as OAuth 2.0 Authorisation Server (AS) classes.com.nimbusds.oauth2.sdk.auth Implementations of OAuth 2.0 client authentication methods at the Token endpoint.com.nimbusds.oauth2.sdk.client OAuth 2.0 dynamic client registration.com.nimbusds.oauth2.sdk.device OAuth 2.0 device authorisation grant classes.com.nimbusds.oauth2.sdk.http HTTP message and utility classes.com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses.com.nimbusds.openid.connect.sdk.op OpenID Connect Provider (OP) classes.com.nimbusds.openid.connect.sdk.rp OpenID Connect Relying Party (RP) classes. -
-
Uses of HTTPRequest in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return HTTPRequest Modifier and Type Method Description HTTPRequestAuthorizationRequest. toHTTPRequest()HTTPRequestAuthorizationRequest. toHTTPRequest(HTTPRequest.Method method)Returns the matching HTTP request.HTTPRequestAuthorizationResponse. toHTTPRequest()Returns an HTTP request for this authorisation response.HTTPRequestPushedAuthorizationRequest. toHTTPRequest()HTTPRequestRequest. toHTTPRequest()Returns the matching HTTP request.HTTPRequestRequestObjectPOSTRequest. toHTTPRequest()Deprecated.HTTPRequestTokenIntrospectionRequest. toHTTPRequest()HTTPRequestTokenRequest. toHTTPRequest()HTTPRequestTokenRevocationRequest. toHTTPRequest()Methods in com.nimbusds.oauth2.sdk with parameters of type HTTPRequest Modifier and Type Method Description static AuthorizationErrorResponseAuthorizationErrorResponse. parse(HTTPRequest httpRequest)Parses an authorisation error response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationRequestAuthorizationRequest. parse(HTTPRequest httpRequest)Parses an authorisation request from the specified HTTP request.static AuthorizationResponseAuthorizationResponse. parse(HTTPRequest httpRequest)Parses an authorisation response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationResponseAuthorizationResponse. parse(HTTPRequest httpRequest, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured authorisation response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationSuccessResponseAuthorizationSuccessResponse. parse(HTTPRequest httpRequest)Parses an authorisation success response from the specified HTTP request at the client redirection (callback) URI.static PushedAuthorizationRequestPushedAuthorizationRequest. parse(HTTPRequest httpRequest)Parses a pushed authorisation request from the specified HTTP request.static RequestObjectPOSTRequestRequestObjectPOSTRequest. parse(HTTPRequest httpRequest)Deprecated.Parses a request object POST request from the specified HTTP request.static TokenIntrospectionRequestTokenIntrospectionRequest. parse(HTTPRequest httpRequest)Parses a token introspection request from the specified HTTP request.static TokenRequestTokenRequest. parse(HTTPRequest httpRequest)Parses a token request from the specified HTTP request.static TokenRevocationRequestTokenRevocationRequest. parse(HTTPRequest httpRequest)Parses a token revocation request from the specified HTTP request.static Map<String,List<String>>AuthorizationResponse. parseResponseParameters(HTTPRequest httpRequest)Parses the relevant authorisation response parameters. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.as
Methods in com.nimbusds.oauth2.sdk.as that return HTTPRequest Modifier and Type Method Description HTTPRequestAuthorizationServerConfigurationRequest. toHTTPRequest() -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.auth
Methods in com.nimbusds.oauth2.sdk.auth with parameters of type HTTPRequest Modifier and Type Method Description abstract voidClientAuthentication. applyTo(HTTPRequest httpRequest)Applies the authentication to the specified HTTP request by setting its Authorization header and/or POST entity-body parameters (according to the implemented client authentication method).voidClientSecretBasic. applyTo(HTTPRequest httpRequest)voidClientSecretPost. applyTo(HTTPRequest httpRequest)voidJWTAuthentication. applyTo(HTTPRequest httpRequest)voidTLSClientAuthentication. applyTo(HTTPRequest httpRequest)static ClientAuthenticationClientAuthentication. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a supported client authentication (seeClientAuthenticationMethod).static ClientSecretBasicClientSecretBasic. parse(HTTPRequest httpRequest)Parses a client secret basic authentication from the specified HTTP request.static ClientSecretJWTClientSecretJWT. parse(HTTPRequest httpRequest)Parses the specified HTTP POST request for a client secret JSON Web Token (JWT) authentication.static ClientSecretPostClientSecretPost. parse(HTTPRequest httpRequest)Parses a client secret post authentication from the specified HTTP POST request.static JWTAuthenticationJWTAuthentication. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a JSON Web Token (JWT) based client authentication.static PKITLSClientAuthenticationPKITLSClientAuthentication. parse(HTTPRequest httpRequest)Parses a PKI mutual TLS client authentication from the specified HTTP request.static PrivateKeyJWTPrivateKeyJWT. parse(HTTPRequest httpRequest)Parses the specified HTTP POST request for a private key JSON Web Token (JWT) authentication.static SelfSignedTLSClientAuthenticationSelfSignedTLSClientAuthentication. parse(HTTPRequest httpRequest)Parses a self-signed certificate mutual TLS client authentication from the specified HTTP request. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that return HTTPRequest Modifier and Type Method Description HTTPRequestClientDeleteRequest. toHTTPRequest()HTTPRequestClientReadRequest. toHTTPRequest()HTTPRequestClientRegistrationRequest. toHTTPRequest()HTTPRequestClientUpdateRequest. toHTTPRequest()Methods in com.nimbusds.oauth2.sdk.client with parameters of type HTTPRequest Modifier and Type Method Description static ClientDeleteRequestClientDeleteRequest. parse(HTTPRequest httpRequest)Parses a client delete request from the specified HTTP DELETE request.static ClientReadRequestClientReadRequest. parse(HTTPRequest httpRequest)Parses a client read request from the specified HTTP GET request.static ClientRegistrationRequestClientRegistrationRequest. parse(HTTPRequest httpRequest)Parses a client registration request from the specified HTTP POST request.static ClientUpdateRequestClientUpdateRequest. parse(HTTPRequest httpRequest)Parses a client update request from the specified HTTP PUT request. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.device
Methods in com.nimbusds.oauth2.sdk.device that return HTTPRequest Modifier and Type Method Description HTTPRequestDeviceAuthorizationRequest. toHTTPRequest()Returns the matching HTTP request.Methods in com.nimbusds.oauth2.sdk.device with parameters of type HTTPRequest Modifier and Type Method Description static DeviceAuthorizationRequestDeviceAuthorizationRequest. parse(HTTPRequest httpRequest)Parses an device authorization request from the specified HTTP request. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.http
Methods in com.nimbusds.oauth2.sdk.http that return HTTPRequest Modifier and Type Method Description static HTTPRequestServletUtils. createHTTPRequest(javax.servlet.http.HttpServletRequest sr)Creates a new HTTP request from the specified HTTP servlet request.static HTTPRequestServletUtils. createHTTPRequest(javax.servlet.http.HttpServletRequest sr, long maxEntityLength)Creates a new HTTP request from the specified HTTP servlet request.Methods in com.nimbusds.oauth2.sdk.http with parameters of type HTTPRequest Modifier and Type Method Description HTTPResponseHTTPEndpoint. process(HTTPRequest httpRequest)Processes an HTTP request. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.token
Methods in com.nimbusds.oauth2.sdk.token with parameters of type HTTPRequest Modifier and Type Method Description static BearerAccessTokenBearerAccessToken. parse(HTTPRequest request)Parses an HTTP request for a bearer access token. -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return HTTPRequest Modifier and Type Method Description HTTPRequestBackChannelLogoutRequest. toHTTPRequest()HTTPRequestLogoutRequest. toHTTPRequest()HTTPRequestUserInfoRequest. toHTTPRequest()Methods in com.nimbusds.openid.connect.sdk with parameters of type HTTPRequest Modifier and Type Method Description static AuthenticationErrorResponseAuthenticationErrorResponse. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication error response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationRequestAuthenticationRequest. parse(HTTPRequest httpRequest)Parses an authentication request from the specified HTTP GET or HTTP POST request.static AuthenticationResponseAuthenticationResponseParser. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationResponseAuthenticationResponseParser. parse(HTTPRequest httpRequest, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured OpenID Connect authentication response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationSuccessResponseAuthenticationSuccessResponse. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication success response from the specified HTTP request at the client redirection (callback) URI.static BackChannelLogoutRequestBackChannelLogoutRequest. parse(HTTPRequest httpRequest)Parses a back-channel logout request from the specified HTTP request.static LogoutRequestLogoutRequest. parse(HTTPRequest httpRequest)Parses a logout request from the specified HTTP request.static UserInfoRequestUserInfoRequest. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a UserInfo request. -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.op
Methods in com.nimbusds.openid.connect.sdk.op that return HTTPRequest Modifier and Type Method Description HTTPRequestOIDCProviderConfigurationRequest. toHTTPRequest() -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.rp
Methods in com.nimbusds.openid.connect.sdk.rp with parameters of type HTTPRequest Modifier and Type Method Description static OIDCClientRegistrationRequestOIDCClientRegistrationRequest. parse(HTTPRequest httpRequest)Parses an OpenID Connect client registration request from the specified HTTP POST request.static OIDCClientUpdateRequestOIDCClientUpdateRequest. parse(HTTPRequest httpRequest)Parses an OpenID Connect client update request from the specified HTTP PUT request.
-