Package com.nimbusds.oauth2.sdk
Interface Request
-
- All Superinterfaces:
Message
- All Known Implementing Classes:
AbstractOptionallyAuthenticatedRequest,AbstractOptionallyIdentifiedRequest,AbstractRequest,AuthenticationRequest,AuthorizationRequest,AuthorizationServerConfigurationRequest,BackChannelLogoutRequest,ClientDeleteRequest,ClientReadRequest,ClientRegistrationRequest,ClientUpdateRequest,DeviceAuthorizationRequest,LogoutRequest,OIDCClientRegistrationRequest,OIDCClientUpdateRequest,OIDCProviderConfigurationRequest,ProtectedResourceRequest,PushedAuthorizationRequest,RequestObjectPOSTRequest,TokenIntrospectionRequest,TokenRequest,TokenRevocationRequest,UserInfoRequest
public interface Request extends Message
Request message, serialises to an HTTP request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URIgetEndpointURI()Gets the URI of the endpoint (HTTP or HTTPS) for which the request is intended.HTTPRequesttoHTTPRequest()Returns the matching HTTP request.
-
-
-
Method Detail
-
getEndpointURI
URI getEndpointURI()
Gets the URI of the endpoint (HTTP or HTTPS) for which the request is intended.- Returns:
- The endpoint URI,
nullif not specified.
-
toHTTPRequest
HTTPRequest toHTTPRequest()
Returns the matching HTTP request.- Returns:
- The HTTP request.
-
-