Package com.nimbusds.oauth2.sdk
Interface Request
-
- All Superinterfaces:
Message
- All Known Implementing Classes:
AbstractConfigurationRequest
,AbstractOptionallyAuthenticatedRequest
,AbstractOptionallyIdentifiedRequest
,AbstractRequest
,AuthenticationRequest
,AuthorizationRequest
,AuthorizationServerConfigurationRequest
,BackChannelLogoutRequest
,ClientDeleteRequest
,ClientReadRequest
,ClientRegistrationRequest
,ClientUpdateRequest
,DeviceAuthorizationRequest
,EntityListingRequest
,ExplicitClientRegistrationRequest
,FederationAPIRequest
,FederationEntityConfigurationRequest
,FetchEntityStatementRequest
,LogoutRequest
,OIDCClientRegistrationRequest
,OIDCClientUpdateRequest
,OIDCProviderConfigurationRequest
,ProtectedResourceRequest
,PushedAuthorizationRequest
,RequestObjectPOSTRequest
,TokenIntrospectionRequest
,TokenRequest
,TokenRevocationRequest
,TrustNegotiationRequest
,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 URI
getEndpointURI()
Gets the URI of the endpoint (HTTP or HTTPS) for which the request is intended.HTTPRequest
toHTTPRequest()
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,
null
if not specified.
-
toHTTPRequest
HTTPRequest toHTTPRequest()
Returns the matching HTTP request.- Returns:
- The HTTP request.
-
-