Class FederationEntityConfigurationRequest
java.lang.Object
com.nimbusds.oauth2.sdk.AbstractRequest
com.nimbusds.oauth2.sdk.AbstractConfigurationRequest
com.nimbusds.openid.connect.sdk.federation.config.FederationEntityConfigurationRequest
Federation entity configuration request.
Example HTTP request:
GET /.well-known/openid-federation HTTP/1.1 Host: example.com
Related specifications:
- OpenID Connect Federation 1.0, section 6.1.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The well-known path for federation entity metadata. -
Constructor Summary
ConstructorsConstructorDescriptionFederationEntityConfigurationRequest
(EntityID entityID) Creates a new federation entity configuration request using thepostfix well-known path composition strategy
.FederationEntityConfigurationRequest
(EntityID entityID, WellKnownPathComposeStrategy strategy) Creates a new federation entity configuration request. -
Method Summary
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractConfigurationRequest
toHTTPRequest
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractRequest
getEndpointURI
-
Field Details
-
OPENID_FEDERATION_ENTITY_WELL_KNOWN_PATH
The well-known path for federation entity metadata.- See Also:
-
-
Constructor Details
-
FederationEntityConfigurationRequest
Creates a new federation entity configuration request using thepostfix well-known path composition strategy
.- Parameters:
entityID
- The entity ID. Must represent a valid URL. Must not benull
.
-
FederationEntityConfigurationRequest
public FederationEntityConfigurationRequest(EntityID entityID, WellKnownPathComposeStrategy strategy) Creates a new federation entity configuration request.- Parameters:
entityID
- The entity ID. Must represent a valid URL. Must not benull
.strategy
- The well-known path composition strategy. Must not benull
.
-