Package com.nimbusds.oauth2.sdk
Class AbstractConfigurationRequest
java.lang.Object
com.nimbusds.oauth2.sdk.AbstractRequest
com.nimbusds.oauth2.sdk.AbstractConfigurationRequest
- Direct Known Subclasses:
AuthorizationServerConfigurationRequest
,FederationEntityConfigurationRequest
,OIDCProviderConfigurationRequest
The base abstract class for OAuth 2.0 and OpenID Connect configuration
requests.
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractConfigurationRequest
(URI baseURI, String wellKnownPath, WellKnownPathComposeStrategy strategy) Creates a new base abstract request. -
Method Summary
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractRequest
getEndpointURI
-
Constructor Details
-
AbstractConfigurationRequest
protected AbstractConfigurationRequest(URI baseURI, String wellKnownPath, WellKnownPathComposeStrategy strategy) Creates a new base abstract request.- Parameters:
baseURI
- The base URI. Must not benull
.wellKnownPath
- The well known path to prepend to any existing path component in the base URI. Must not benull
.strategy
- The well-known path composition strategy. Must not benull
.
-
-
Method Details
-
toHTTPRequest
Description copied from interface:Request
Returns the matching HTTP request.- Returns:
- The HTTP request.
-