Enum AssertionTarget

    • Enum Constant Detail

      • CLIENT_REGISTRATION_SOFTWARE_STATEMENT

        public static final AssertionTarget CLIENT_REGISTRATION_SOFTWARE_STATEMENT
        The assertion processor is used for the OAuth Dynamic Client Registration protocol's "software_statement" field, which contains a signed assertion of client attributes.
    • Method Detail

      • values

        public static AssertionTarget[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AssertionTarget c : AssertionTarget.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AssertionTarget valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getValue

        public short getValue()
        Get the numerical value for this target.
        Returns:
        The numerical value for this target.
        Since:
        2.39
      • getByValue

        public static AssertionTarget getByValue​(short value)
        Get the enum object with the given numerical value, or null if not found.
        Parameters:
        value - The numerical value to search for.
        Returns:
        The enum object, or null if not found.
        Since:
        2.39