Class TrustMarkIssuerMetadata
java.lang.Object
com.nimbusds.openid.connect.sdk.federation.trust.marks.TrustMarkIssuerMetadata
Deprecated.
Trust mark issuer metadata.
Related specifications:
- OpenID Connect Federation 1.0.
-
Constructor Summary
ConstructorsConstructorDescriptionTrustMarkIssuerMetadata
(URI federationStatusEndpoint) Deprecated.Creates a new trust mark issuer metadata. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the federation status endpoint URI.static TrustMarkIssuerMetadata
Deprecated.Parses a trust mark issuer metadata from the specified JSON object string.static TrustMarkIssuerMetadata
parse
(net.minidev.json.JSONObject jsonObject) Deprecated.Parses a trust mark issuer metadata from the specified JSON object.net.minidev.json.JSONObject
Deprecated.Returns a JSON object representation of this trust mark issuer metadata.
-
Constructor Details
-
TrustMarkIssuerMetadata
Deprecated.Creates a new trust mark issuer metadata.- Parameters:
federationStatusEndpoint
- The federation status endpoint,null
if not specified.
-
-
Method Details
-
getFederationStatusEndpointURI
Deprecated.Gets the federation status endpoint URI. Corresponds to thefederation_status_endpoint
metadata field.- Returns:
- The federation status endpoint URI,
null
if not specified.
-
toJSONObject
Deprecated.Returns a JSON object representation of this trust mark issuer metadata.Example:
{ "endpoint": "https://trust_marks_are_us.example.com/status" }
- Returns:
- The JSON object.
-
parse
public static TrustMarkIssuerMetadata parse(net.minidev.json.JSONObject jsonObject) throws ParseException Deprecated.Parses a trust mark issuer metadata from the specified JSON object.Example:
{ "endpoint": "https://trust_marks_are_us.example.com/status" }
- Parameters:
jsonObject
- The JSON object. Must not benull
.- Returns:
- The trust mark issuer metadata.
- Throws:
ParseException
- If parsing failed.
-
parse
Deprecated.Parses a trust mark issuer metadata from the specified JSON object string.Example:
{ "endpoint": "https://trust_marks_are_us.example.com/status" }
- Parameters:
json
- The JSON object string. Must not benull
.- Returns:
- The trust mark issuer metadata.
- Throws:
ParseException
- If parsing failed.
-