Enum KEYS

    • Enum Constant Detail

      • TIME

        public static final KEYS TIME
      • OPERATION

        public static final KEYS OPERATION
      • WS_SEC_PRINCIPAL

        public static final KEYS WS_SEC_PRINCIPAL
      • STATUS

        public static final KEYS STATUS
      • TOKENTYPE

        public static final KEYS TOKENTYPE
      • EXCEPTION

        public static final KEYS EXCEPTION
      • REALM

        public static final KEYS REALM
      • APPLIESTO

        public static final KEYS APPLIESTO
      • CLAIMS_PRIMARY

        public static final KEYS CLAIMS_PRIMARY
      • CLAIMS_SECONDARY

        public static final KEYS CLAIMS_SECONDARY
      • DURATION

        public static final KEYS DURATION
      • ACTAS_PRINCIPAL

        public static final KEYS ACTAS_PRINCIPAL
      • ONBEHALFOF_PRINCIPAL

        public static final KEYS ONBEHALFOF_PRINCIPAL
      • VALIDATE_PRINCIPAL

        public static final KEYS VALIDATE_PRINCIPAL
      • CANCEL_PRINCIPAL

        public static final KEYS CANCEL_PRINCIPAL
      • RENEW_PRINCIPAL

        public static final KEYS RENEW_PRINCIPAL
      • REMOTE_HOST

        public static final KEYS REMOTE_HOST
      • REMOTE_PORT

        public static final KEYS REMOTE_PORT
      • URL

        public static final KEYS URL
      • STACKTRACE

        public static final KEYS STACKTRACE
      • KEYTYPE

        public static final KEYS KEYTYPE
    • Method Detail

      • values

        public static KEYS[] 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 (KEYS c : KEYS.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static KEYS 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