Enum CookieCompliance.Violation

java.lang.Object
java.lang.Enum<CookieCompliance.Violation>
org.eclipse.jetty.http.CookieCompliance.Violation
All Implemented Interfaces:
Serializable, Comparable<CookieCompliance.Violation>, java.lang.constant.Constable, ComplianceViolation
Enclosing class:
CookieCompliance

public static enum CookieCompliance.Violation extends Enum<CookieCompliance.Violation> implements ComplianceViolation
  • Enum Constant Details

    • COMMA_NOT_VALID_OCTET

      @Deprecated public static final CookieCompliance.Violation COMMA_NOT_VALID_OCTET
      Deprecated.
      Use SPECIAL_CHARS_IN_QUOTES
      A comma was found in a cookie value.
    • COMMA_SEPARATOR

      public static final CookieCompliance.Violation COMMA_SEPARATOR
      A comma was found as separator between cookies.
    • RESERVED_NAMES_NOT_DOLLAR_PREFIXED

      @Deprecated public static final CookieCompliance.Violation RESERVED_NAMES_NOT_DOLLAR_PREFIXED
      Deprecated.
      no replacement because was mistakenly considered a violation
    • SPECIAL_CHARS_IN_QUOTES

      public static final CookieCompliance.Violation SPECIAL_CHARS_IN_QUOTES
      Special characters were found in a quoted cookie value.
    • ESCAPE_IN_QUOTES

      public static final CookieCompliance.Violation ESCAPE_IN_QUOTES
      A backslash was found in a quoted cookie value.
    • BAD_QUOTES

      public static final CookieCompliance.Violation BAD_QUOTES
      Quotes are not balanced or are embedded in value.
    • INVALID_COOKIES

      public static final CookieCompliance.Violation INVALID_COOKIES
      An invalid cookie was found, without a more specific violation. When this violation is not allowed, an exception is thrown.
    • ATTRIBUTES

      public static final CookieCompliance.Violation ATTRIBUTES
      A cookie attribute was found. The attribute value is retained only if ATTRIBUTE_VALUES is allowed.
    • ATTRIBUTE_VALUES

      public static final CookieCompliance.Violation ATTRIBUTE_VALUES
      A cookie attribute value was found and its value is retained. Allowing ATTRIBUTE_VALUE implies allowing ATTRIBUTES.
    • OPTIONAL_WHITE_SPACE

      public static final CookieCompliance.Violation OPTIONAL_WHITE_SPACE
      Whitespace was found around the cookie name and/or around the cookie value.
    • SPACE_IN_VALUES

      public static final CookieCompliance.Violation SPACE_IN_VALUES
      Allow spaces within values without quotes.
  • Method Details

    • values

      public static CookieCompliance.Violation[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CookieCompliance.Violation 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
    • getName

      public String getName()
      Specified by:
      getName in interface ComplianceViolation
      Returns:
      The name of the violation.
    • getURL

      public String getURL()
      Specified by:
      getURL in interface ComplianceViolation
      Returns:
      A URL to the specification that provides more information regarding the requirement that may be violated.
    • getDescription

      public String getDescription()
      Specified by:
      getDescription in interface ComplianceViolation
      Returns:
      A short description of the violation.