Class AuthorizedParty

java.lang.Object
com.nimbusds.oauth2.sdk.id.Identifier
com.nimbusds.openid.connect.sdk.claims.AuthorizedParty
All Implemented Interfaces:
Serializable, Comparable<Identifier>, net.minidev.json.JSONAware

@Immutable public final class AuthorizedParty extends Identifier
OAuth 2.0 client authorized to use the ID Token as an OAuth access token, if different than the client that requested the ID Token (azp). It must contain the client identifier of the authorised party.

The client identifier can be a URI or an arbitrary string.

See also ClientID.

Related specifications:

  • OpenID Connect Core 1.0
  • OAuth 2.0 (RFC 6749)
See Also:
  • Constructor Details

    • AuthorizedParty

      public AuthorizedParty(String value)
      Creates a new authorised party identifier with the specified value.
      Parameters:
      value - The authorised party identifier value. Must not be null.
  • Method Details