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.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. 
 

Uses of HTTPRequest in com.nimbusds.oauth2.sdk
 

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

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.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 OIDCClientReadRequest.toHTTPRequest(URL url)
           
 HTTPRequest OIDCClientRegisterRequest.toHTTPRequest(URL url)
           
 HTTPRequest UserInfoRequest.toHTTPRequest(URL url)
           
 

Methods in com.nimbusds.openid.connect.sdk with parameters of type HTTPRequest
static OIDCClientReadRequest OIDCClientReadRequest.parse(HTTPRequest httpRequest)
          Parses an OpenID Connect client read request from the specified HTTP GET request.
static OIDCClientRegisterRequest OIDCClientRegisterRequest.parse(HTTPRequest httpRequest)
          Parses an OpenID Connect client register request from the specified HTTP POST request.
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.
 



Copyright © 2013 NimbusDS. All Rights Reserved.