Uses of Class
com.nimbusds.oauth2.sdk.http.HTTPRequest

Packages that use HTTPRequest
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. 
 

Uses of HTTPRequest in com.nimbusds.oauth2.sdk
 

Methods in com.nimbusds.oauth2.sdk that return HTTPRequest
 HTTPRequest RefreshTokenRequest.toHTTPRequest()
           
 HTTPRequest Request.toHTTPRequest()
          Returns the matching HTTP request.
 HTTPRequest AuthorizationRequest.toHTTPRequest()
           
 HTTPRequest AccessTokenRequest.toHTTPRequest()
           
 HTTPRequest AuthorizationRequest.toHTTPRequest(HTTPRequest.Method method)
          Returns the matching HTTP request.
 

Methods in com.nimbusds.oauth2.sdk with parameters of type HTTPRequest
static RefreshTokenRequest RefreshTokenRequest.parse(HTTPRequest httpRequest)
          Parses the specified HTTP request for a refresh token request.
static AuthorizationRequest AuthorizationRequest.parse(HTTPRequest httpRequest)
          Parses an authorisation request from the specified HTTP request.
static AccessTokenRequest AccessTokenRequest.parse(HTTPRequest httpRequest)
          Parses the specified HTTP request for an access token request.
static TokenRequest TokenRequest.parse(HTTPRequest httpRequest)
          Parses the specified HTTP request for a token request.
 

Uses of HTTPRequest in com.nimbusds.oauth2.sdk.auth
 

Methods in com.nimbusds.oauth2.sdk.auth with parameters of type HTTPRequest
 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.
 

Uses of HTTPRequest in com.nimbusds.oauth2.sdk.client
 

Methods in com.nimbusds.oauth2.sdk.client that return HTTPRequest
 HTTPRequest ClientUpdateRequest.toHTTPRequest()
           
 HTTPRequest ClientReadRequest.toHTTPRequest()
           
 HTTPRequest ClientRegistrationRequest.toHTTPRequest()
           
 HTTPRequest ClientDeleteRequest.toHTTPRequest()
           
 

Methods in com.nimbusds.oauth2.sdk.client with parameters of type HTTPRequest
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.
 

Uses of HTTPRequest in com.nimbusds.oauth2.sdk.http
 

Methods in com.nimbusds.oauth2.sdk.http with parameters of type HTTPRequest
 HTTPResponse 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 HTTPRequest
static BearerAccessToken BearerAccessToken.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
 HTTPRequest UserInfoRequest.toHTTPRequest()
           
 

Methods in com.nimbusds.openid.connect.sdk with parameters of type HTTPRequest
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.
 

Uses of HTTPRequest in com.nimbusds.openid.connect.sdk.rp
 

Methods in com.nimbusds.openid.connect.sdk.rp with parameters of type HTTPRequest
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.