Class SubjectAuthorization

    • Constructor Detail

      • SubjectAuthorization

        public SubjectAuthorization​(com.nimbusds.oauth2.sdk.id.Subject subject,
                                    com.nimbusds.oauth2.sdk.Scope scope,
                                    AccessTokenSpec accessTokenSpec,
                                    IDTokenSpec idTokenSpec,
                                    ClaimsSpec claimsSpec,
                                    net.minidev.json.JSONObject data)
        Creates a new authorisation for the specified subject.
        Parameters:
        subject - The subject (end-user) identifier. Must not be null.
        scope - The authorised scope values. Must not be null.
        accessTokenSpec - The access token specification. Must not be null.
        idTokenSpec - The ID token specification. Must not be null.
        claimsSpec - The claims specification. Must not be null.
        data - Additional data as a JSON object, null if not specified.
    • Method Detail

      • getSubject

        public com.nimbusds.oauth2.sdk.id.Subject getSubject()
        Returns the subject (end-user) identifier.
        Returns:
        The subject identifier.
      • getAuthTime

        public Date getAuthTime()
        Returns the time of the subject authentication.
        Returns:
        The time of the subject authentication. If null it will be set to now. Applies only if an ID token is issued.
      • getACR

        public com.nimbusds.openid.connect.sdk.claims.ACR getACR()
        Returns the Authentication Context Class Reference (ACR).
        Returns:
        The Authentication Context Class Reference (ACR), null if not specified. Applies only if an ID token is issued.
      • getAMRList

        public List<com.nimbusds.openid.connect.sdk.claims.AMR> getAMRList()
        Returns The Authentication Methods Reference (AMR) list.
        Returns:
        The Authentication Methods Reference (AMR) list, null if not specified. Applies only if an ID token is issued.
      • getIDTokenSpec

        public IDTokenSpec getIDTokenSpec()
        Returns the ID token specification.
        Returns:
        The ID token specification.
      • getClaimsSpec

        public ClaimsSpec getClaimsSpec()
        Returns the claims specification.
        Returns:
        The claims specification.
      • parse

        public static SubjectAuthorization parse​(net.minidev.json.JSONObject jsonObject)
                                          throws com.nimbusds.oauth2.sdk.ParseException
        Parses a subject authorisation from the specified JSON object.
        Parameters:
        jsonObject - The JSON object to parse. Must not be null.
        Returns:
        The subject authorisation.
        Throws:
        com.nimbusds.oauth2.sdk.ParseException - If parsing failed.
      • parse

        public static SubjectAuthorization parse​(String json)
                                          throws com.nimbusds.oauth2.sdk.ParseException
        Parses a subject authorisation from the specified JSON object string.
        Parameters:
        json - The JSON object string to parse. Must not be null.
        Returns:
        The subject authorisation.
        Throws:
        com.nimbusds.oauth2.sdk.ParseException - If parsing failed.