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
public abstract class AbstractConfigurationRequest extends AbstractRequest
The base abstract class for OAuth 2.0 and OpenID Connect configuration requests.
-
-
Constructor Summary
Constructors Constructor Description AbstractConfigurationRequest(URI baseURI, String wellKnownPath, WellKnownPathComposeStrategy strategy)
Creates a new base abstract request.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HTTPRequest
toHTTPRequest()
Returns the matching HTTP request.-
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractRequest
getEndpointURI
-
-
-
-
Constructor Detail
-
AbstractConfigurationRequest
public 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 Detail
-
toHTTPRequest
public HTTPRequest toHTTPRequest()
Description copied from interface:Request
Returns the matching HTTP request.- Returns:
- The HTTP request.
-
-