Uses of Class
com.nimbusds.oauth2.sdk.http.HTTPRequest
Packages that use HTTPRequest
Package
Description
Classes for representing, serialising and parsing core OAuth 2.0 concepts.
Implementations of OAuth 2.0 client authentication methods at the Token
endpoint.
OpenID Connect Client Initiated Backchannel Authentication (CIBA) Flow -
Core 1.0 classes.
OAuth 2.0 dynamic client registration.
OAuth 2.0 device authorisation grant classes.
HTTP message and utility classes.
OAuth 2.0 access and refresh token implementations.
Classes for representing, serialising and parsing core OpenID Connect
concepts.
OpenID Connect Federation 1.0 API classes.
OpenID Connect Federation 1.0 explicit client registration.
OpenID Connect Relying Party (RP) classes.
-
Uses of HTTPRequest in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return HTTPRequestModifier and TypeMethodDescriptionAbstractConfigurationRequest.toHTTPRequest()
AuthorizationRequest.toHTTPRequest()
AuthorizationRequest.toHTTPRequest
(HTTPRequest.Method method) Returns the matching HTTP request.AuthorizationResponse.toHTTPRequest()
Returns an HTTP request for this authorisation response.PushedAuthorizationRequest.toHTTPRequest()
Request.toHTTPRequest()
Returns the matching HTTP request.RequestObjectPOSTRequest.toHTTPRequest()
Deprecated.TokenIntrospectionRequest.toHTTPRequest()
TokenRequest.toHTTPRequest()
TokenRevocationRequest.toHTTPRequest()
Methods in com.nimbusds.oauth2.sdk with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic AuthorizationErrorResponse
AuthorizationErrorResponse.parse
(HTTPRequest httpRequest) Parses an authorisation error response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationRequest
AuthorizationRequest.parse
(HTTPRequest httpRequest) Parses an authorisation request from the specified HTTP request.static AuthorizationResponse
AuthorizationResponse.parse
(HTTPRequest httpRequest) Parses an authorisation response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationResponse
AuthorizationResponse.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 AuthorizationSuccessResponse
AuthorizationSuccessResponse.parse
(HTTPRequest httpRequest) Parses an authorisation success response from the specified HTTP request at the client redirection (callback) URI.static PushedAuthorizationRequest
PushedAuthorizationRequest.parse
(HTTPRequest httpRequest) Parses a pushed authorisation request from the specified HTTP request.static RequestObjectPOSTRequest
RequestObjectPOSTRequest.parse
(HTTPRequest httpRequest) Deprecated.Parses a request object POST request from the specified HTTP request.static TokenIntrospectionRequest
TokenIntrospectionRequest.parse
(HTTPRequest httpRequest) Parses a token introspection request from the specified HTTP request.static TokenRequest
TokenRequest.parse
(HTTPRequest httpRequest) Parses a token request from the specified HTTP request.static TokenRevocationRequest
TokenRevocationRequest.parse
(HTTPRequest httpRequest) Parses a token revocation request from the specified HTTP request.AuthorizationResponse.parseResponseParameters
(HTTPRequest httpRequest) Parses the relevant authorisation response parameters. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.auth
Methods in com.nimbusds.oauth2.sdk.auth with parameters of type HTTPRequestModifier and TypeMethodDescriptionabstract void
ClientAuthentication.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).void
ClientSecretBasic.applyTo
(HTTPRequest httpRequest) void
ClientSecretPost.applyTo
(HTTPRequest httpRequest) void
JWTAuthentication.applyTo
(HTTPRequest httpRequest) void
TLSClientAuthentication.applyTo
(HTTPRequest httpRequest) static ClientAuthentication
ClientAuthentication.parse
(HTTPRequest httpRequest) Parses the specified HTTP request for a supported client authentication (seeClientAuthenticationMethod
).static ClientSecretBasic
ClientSecretBasic.parse
(HTTPRequest httpRequest) Parses a client secret basic authentication from the specified HTTP request.static ClientSecretJWT
ClientSecretJWT.parse
(HTTPRequest httpRequest) Parses the specified HTTP POST request for a client secret JSON Web Token (JWT) authentication.static ClientSecretPost
ClientSecretPost.parse
(HTTPRequest httpRequest) Parses a client secret post authentication from the specified HTTP POST request.static JWTAuthentication
JWTAuthentication.parse
(HTTPRequest httpRequest) Parses the specified HTTP request for a JSON Web Token (JWT) based client authentication.static PKITLSClientAuthentication
PKITLSClientAuthentication.parse
(HTTPRequest httpRequest) Parses a PKI mutual TLS client authentication from the specified HTTP request.static PrivateKeyJWT
PrivateKeyJWT.parse
(HTTPRequest httpRequest) Parses the specified HTTP POST request for a private key JSON Web Token (JWT) authentication.SelfSignedTLSClientAuthentication.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.ciba
Methods in com.nimbusds.oauth2.sdk.ciba that return HTTPRequestModifier and TypeMethodDescriptionCIBAErrorDelivery.toHTTPRequest()
CIBAPingCallback.toHTTPRequest()
CIBARequest.toHTTPRequest()
Returns the matching HTTP request.CIBATokenDelivery.toHTTPRequest()
Methods in com.nimbusds.oauth2.sdk.ciba with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic CIBAErrorDelivery
CIBAErrorDelivery.parse
(HTTPRequest httpRequest) Parses a CIBA error push delivery from the specified HTTP request.static CIBAPingCallback
CIBAPingCallback.parse
(HTTPRequest httpRequest) Parses a CIBA ping callback from the specified HTTP request.static CIBAPushCallback
CIBAPushCallback.parse
(HTTPRequest httpRequest) Parses a CIBA push callback from the specified HTTP request.static CIBARequest
CIBARequest.parse
(HTTPRequest httpRequest) Parses a CIBA request from the specified HTTP request.static CIBATokenDelivery
CIBATokenDelivery.parse
(HTTPRequest httpRequest) Parses a CIBA push token delivery from the specified HTTP request. -
Uses of HTTPRequest in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that return HTTPRequestModifier and TypeMethodDescriptionClientDeleteRequest.toHTTPRequest()
ClientReadRequest.toHTTPRequest()
ClientRegistrationRequest.toHTTPRequest()
ClientUpdateRequest.toHTTPRequest()
Methods in com.nimbusds.oauth2.sdk.client with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic ClientDeleteRequest
ClientDeleteRequest.parse
(HTTPRequest httpRequest) Parses a client delete request from the specified HTTP DELETE request.static ClientReadRequest
ClientReadRequest.parse
(HTTPRequest httpRequest) Parses a client read request from the specified HTTP GET request.static ClientRegistrationRequest
ClientRegistrationRequest.parse
(HTTPRequest httpRequest) Parses a client registration request from the specified HTTP POST request.static ClientUpdateRequest
ClientUpdateRequest.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 HTTPRequestModifier and TypeMethodDescriptionDeviceAuthorizationRequest.toHTTPRequest()
Returns the matching HTTP request.Methods in com.nimbusds.oauth2.sdk.device with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic DeviceAuthorizationRequest
DeviceAuthorizationRequest.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 HTTPRequestModifier and TypeMethodDescriptionstatic HTTPRequest
JakartaServletUtils.createHTTPRequest
(jakarta.servlet.http.HttpServletRequest sr) Creates a new HTTP request from the specified HTTP servlet request.static HTTPRequest
JakartaServletUtils.createHTTPRequest
(jakarta.servlet.http.HttpServletRequest sr, long maxEntityLength) Creates a new HTTP request from the specified HTTP servlet request.static HTTPRequest
ServletUtils.createHTTPRequest
(javax.servlet.http.HttpServletRequest sr) Creates a new HTTP request from the specified HTTP servlet request.static HTTPRequest
ServletUtils.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 HTTPRequestModifier and TypeMethodDescriptionvoid
HTTPRequestConfigurator.configure
(HTTPRequest httpRequest) Configures the specifiedHTTPRequest
instance.HTTPEndpoint.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 HTTPRequestModifier and TypeMethodDescriptionstatic AccessToken
AccessToken.parse
(HTTPRequest request) Parses an HTTP request header value for an access token.static BearerAccessToken
BearerAccessToken.parse
(HTTPRequest request) Parses an HTTP request for a bearer access token.static DPoPAccessToken
DPoPAccessToken.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 HTTPRequestModifier and TypeMethodDescriptionBackChannelLogoutRequest.toHTTPRequest()
LogoutRequest.toHTTPRequest()
UserInfoRequest.toHTTPRequest()
Methods in com.nimbusds.openid.connect.sdk with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic AuthenticationErrorResponse
AuthenticationErrorResponse.parse
(HTTPRequest httpRequest) Parses an OpenID Connect authentication error response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationRequest
AuthenticationRequest.parse
(HTTPRequest httpRequest) Parses an authentication request from the specified HTTP GET or HTTP POST request.static AuthenticationResponse
AuthenticationResponseParser.parse
(HTTPRequest httpRequest) Parses an OpenID Connect authentication response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationResponse
AuthenticationResponseParser.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.AuthenticationSuccessResponse.parse
(HTTPRequest httpRequest) Parses an OpenID Connect authentication success response from the specified HTTP request at the client redirection (callback) URI.static BackChannelLogoutRequest
BackChannelLogoutRequest.parse
(HTTPRequest httpRequest) Parses a back-channel logout request from the specified HTTP request.static LogoutRequest
LogoutRequest.parse
(HTTPRequest httpRequest) Parses a logout request from the specified HTTP GET or POST request.static UserInfoRequest
UserInfoRequest.parse
(HTTPRequest httpRequest) Parses the specified HTTP request for a UserInfo request. -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.federation.api
Methods in com.nimbusds.openid.connect.sdk.federation.api that return HTTPRequestModifier and TypeMethodDescriptionEntityListingRequest.toHTTPRequest()
FederationAPIRequest.toHTTPRequest()
TrustMarkStatusRequest.toHTTPRequest()
Methods in com.nimbusds.openid.connect.sdk.federation.api with parameters of type HTTPRequestModifier and TypeMethodDescriptionstatic EntityListingRequest
EntityListingRequest.parse
(HTTPRequest httpRequest) Parses an entity listing request from the specified HTTP request.static FetchEntityStatementRequest
FetchEntityStatementRequest.parse
(HTTPRequest httpRequest) Parses a fetch entity statement request from the specified HTTP request.static ResolveRequest
ResolveRequest.parse
(HTTPRequest httpRequest) Parses a resolve entity statement request from the specified HTTP request.static TrustMarkStatusRequest
TrustMarkStatusRequest.parse
(HTTPRequest httpRequest) Parses a trust mark status request from the specified HTTP request. -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.federation.registration
Methods in com.nimbusds.openid.connect.sdk.federation.registration that return HTTPRequestMethods in com.nimbusds.openid.connect.sdk.federation.registration with parameters of type HTTPRequestModifier and TypeMethodDescriptionExplicitClientRegistrationRequest.parse
(HTTPRequest httpRequest) Parses an explicit client registration request from the specified HTTP request. -
Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.rp
Methods in com.nimbusds.openid.connect.sdk.rp with parameters of type HTTPRequestModifier and TypeMethodDescriptionOIDCClientRegistrationRequest.parse
(HTTPRequest httpRequest) Parses an OpenID Connect client registration request from the specified HTTP POST request.static OIDCClientUpdateRequest
OIDCClientUpdateRequest.parse
(HTTPRequest httpRequest) Parses an OpenID Connect client update request from the specified HTTP PUT request.