Class OidcIdToken

    • Constructor Detail

      • OidcIdToken

        public OidcIdToken​(java.lang.String tokenValue,
                           java.time.Instant issuedAt,
                           java.time.Instant expiresAt,
                           java.util.Map<java.lang.String,​java.lang.Object> claims)
        Constructs a OidcIdToken using the provided parameters.
        Parameters:
        tokenValue - the ID Token value
        issuedAt - the time at which the ID Token was issued (iat)
        expiresAt - the expiration time (exp) on or after which the ID Token MUST NOT be accepted
        claims - the claims about the authentication of the End-User
    • Method Detail

      • getClaims

        public java.util.Map<java.lang.String,​java.lang.Object> getClaims()
        Description copied from interface: ClaimAccessor
        Returns a set of claims that may be used for assertions.
        Specified by:
        getClaims in interface ClaimAccessor
        Returns:
        a Map of claims