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.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 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.rp |
OpenID Connect Relying Party (RP) classes.
|
Modifier and Type | Method and Description |
---|---|
HTTPRequest |
TokenRevocationRequest.toHTTPRequest() |
HTTPRequest |
TokenRequest.toHTTPRequest() |
HTTPRequest |
Request.toHTTPRequest()
Returns the matching HTTP request.
|
HTTPRequest |
AuthorizationRequest.toHTTPRequest() |
HTTPRequest |
TokenIntrospectionRequest.toHTTPRequest() |
HTTPRequest |
AuthorizationResponse.toHTTPRequest()
Returns an HTTP request for this authorisation response.
|
HTTPRequest |
AuthorizationRequest.toHTTPRequest(HTTPRequest.Method method)
Returns the matching HTTP request.
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationSuccessResponse |
AuthorizationSuccessResponse.parse(HTTPRequest httpRequest)
Parses an authorisation success response from the specified HTTP
request at the client redirection (callback) URI.
|
static TokenRevocationRequest |
TokenRevocationRequest.parse(HTTPRequest httpRequest)
Parses a token revocation request from the specified HTTP request.
|
static AuthorizationErrorResponse |
AuthorizationErrorResponse.parse(HTTPRequest httpRequest)
Parses an authorisation error response from the specified HTTP
request at the client redirection (callback) URI.
|
static TokenRequest |
TokenRequest.parse(HTTPRequest httpRequest)
Parses a token request from the specified HTTP request.
|
static AuthorizationRequest |
AuthorizationRequest.parse(HTTPRequest httpRequest)
Parses an authorisation request from the specified HTTP request.
|
static TokenIntrospectionRequest |
TokenIntrospectionRequest.parse(HTTPRequest httpRequest)
Parses a token introspection 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.
|
Modifier and Type | Method and Description |
---|---|
void |
ClientSecretPost.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 |
ClientSecretBasic.applyTo(HTTPRequest httpRequest) |
void |
JWTAuthentication.applyTo(HTTPRequest httpRequest) |
static ClientSecretPost |
ClientSecretPost.parse(HTTPRequest httpRequest)
Parses a client secret post authentication from the specified HTTP
POST request.
|
static PrivateKeyJWT |
PrivateKeyJWT.parse(HTTPRequest httpRequest)
Parses the specified HTTP POST request for a private key JSON Web
Token (JWT) authentication.
|
static ClientSecretJWT |
ClientSecretJWT.parse(HTTPRequest httpRequest)
Parses the specified HTTP POST request for a client secret JSON Web
Token (JWT) authentication.
|
static ClientAuthentication |
ClientAuthentication.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a supported client
authentication (see
ClientAuthenticationMethod ). |
static ClientSecretBasic |
ClientSecretBasic.parse(HTTPRequest httpRequest)
Parses a client secret basic authentication from the specified HTTP
request.
|
static JWTAuthentication |
JWTAuthentication.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a JSON Web Token (JWT) based
client authentication.
|
Modifier and Type | Method and Description |
---|---|
HTTPRequest |
ClientRegistrationRequest.toHTTPRequest() |
HTTPRequest |
ClientDeleteRequest.toHTTPRequest() |
HTTPRequest |
ClientUpdateRequest.toHTTPRequest() |
HTTPRequest |
ClientReadRequest.toHTTPRequest() |
Modifier and Type | Method and Description |
---|---|
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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 |
LogoutRequest.toHTTPRequest() |
HTTPRequest |
UserInfoRequest.toHTTPRequest() |
Modifier and Type | Method and Description |
---|---|
static AuthenticationRequest |
AuthenticationRequest.parse(HTTPRequest httpRequest)
Parses an authentication request from the specified HTTP GET or HTTP
POST request.
|
static LogoutRequest |
LogoutRequest.parse(HTTPRequest httpRequest)
Parses a logout request from the specified HTTP request.
|
static AuthenticationErrorResponse |
AuthenticationErrorResponse.parse(HTTPRequest httpRequest)
Parses an OpenID Connect authentication error response from the
specified HTTP request at the client redirection (callback) URI.
|
static AuthenticationSuccessResponse |
AuthenticationSuccessResponse.parse(HTTPRequest httpRequest)
Parses an OpenID Connect authentication success response from the
specified HTTP request at the client redirection (callback) URI.
|
static UserInfoRequest |
UserInfoRequest.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a UserInfo request.
|
Modifier and Type | Method and Description |
---|---|
static OIDCClientRegistrationRequest |
OIDCClientRegistrationRequest.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.
|
Copyright © 2015 Connect2id Ltd.. All Rights Reserved.