Package | Description |
---|---|
com.nimbusds.oauth2.sdk |
Classes for representing, serialising and parsing OAuth 2.0 client requests
and server responses.
|
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.http |
HTTP message 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.rp |
OpenID Connect Relying Party (RP) classes.
|
Modifier and Type | Method and Description |
---|---|
HTTPRequest |
Request.toHTTPRequest()
Returns the matching HTTP request.
|
HTTPRequest |
AuthorizationRequest.toHTTPRequest() |
HTTPRequest |
TokenRequest.toHTTPRequest() |
HTTPRequest |
AuthorizationRequest.toHTTPRequest(HTTPRequest.Method method)
Returns the matching HTTP request.
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationRequest |
AuthorizationRequest.parse(HTTPRequest httpRequest)
Parses an authorisation request from the specified HTTP request.
|
static TokenRequest |
TokenRequest.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a token request.
|
Modifier and Type | Method and Description |
---|---|
void |
ClientSecretBasic.applyTo(HTTPRequest httpRequest) |
abstract 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 |
ClientSecretPost.applyTo(HTTPRequest httpRequest) |
void |
JWTAuthentication.applyTo(HTTPRequest httpRequest) |
static ClientSecretBasic |
ClientSecretBasic.parse(HTTPRequest httpRequest)
Parses a client secret basic authentication from the specified HTTP
request.
|
static ClientAuthentication |
ClientAuthentication.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a supported client
authentication (see
ClientAuthenticationMethod ). |
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 PrivateKeyJWT |
PrivateKeyJWT.parse(HTTPRequest httpRequest)
Parses the specified HTTP POST request for a private key JSON Web
Token (JWT) authentication.
|
Modifier and Type | Method and Description |
---|---|
HTTPRequest |
ClientUpdateRequest.toHTTPRequest() |
HTTPRequest |
ClientReadRequest.toHTTPRequest() |
HTTPRequest |
ClientRegistrationRequest.toHTTPRequest() |
HTTPRequest |
ClientDeleteRequest.toHTTPRequest() |
Modifier and Type | Method and Description |
---|---|
static ClientUpdateRequest |
ClientUpdateRequest.parse(HTTPRequest httpRequest)
Parses a client update request from the specified HTTP PUT 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 ClientDeleteRequest |
ClientDeleteRequest.parse(HTTPRequest httpRequest)
Parses a client delete request from the specified HTTP DELETE
request.
|
Modifier and Type | Method and Description |
---|---|
HTTPResponse |
HTTPEndpoint.process(HTTPRequest httpRequest)
Processes an HTTP request.
|
Modifier and Type | Method and Description |
---|---|
static BearerAccessToken |
BearerAccessToken.parse(HTTPRequest request)
Parses an HTTP request for a bearer access token.
|
Modifier and Type | Method and Description |
---|---|
HTTPRequest |
UserInfoRequest.toHTTPRequest() |
Modifier and Type | Method and Description |
---|---|
static UserInfoRequest |
UserInfoRequest.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a UserInfo request.
|
static AuthorizationRequest |
OIDCAuthorizationRequest.parse(HTTPRequest httpRequest)
Parses an authorisation request from the specified HTTP GET or HTTP
POST request.
|
Modifier and Type | Method and Description |
---|---|
static ClientUpdateRequest |
OIDCClientUpdateRequest.parse(HTTPRequest httpRequest)
Parses an OpenID Connect client update request from the specified
HTTP PUT request.
|
static OIDCClientRegistrationRequest |
OIDCClientRegistrationRequest.parse(HTTPRequest httpRequest)
Parses an OpenID Connect client registration request from the
specified HTTP POST request.
|
Copyright © 2013 NimbusDS. All Rights Reserved.