Enum Class CookieCompliance.Violation

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

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

    • COMMA_NOT_VALID_OCTET

      @Deprecated(since="10.0.14", forRemoval=true) public static final CookieCompliance.Violation COMMA_NOT_VALID_OCTET
      Deprecated, for removal: This API element is subject to removal in a future version.
      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(since="10.0.14", forRemoval=true) public static final CookieCompliance.Violation RESERVED_NAMES_NOT_DOLLAR_PREFIXED
      Deprecated, for removal: This API element is subject to removal in a future version.
      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
      An obsolete style attribute was found in the Cookie header. (Has no effect on Set-Cookie header)

      An obsolete style attribute starts with $ (such as $Path).

      When this violation is present, these obsolete style attributes are parsed as attributes, not as cookies, and dropped. If you want to retain their meaning, use ATTRIBUTE_VALUES.

    • ATTRIBUTE_VALUES

      public static final CookieCompliance.Violation ATTRIBUTE_VALUES
      An obsolete style attribute was found in the Cookie header. (Has no effect on Set-Cookie header)

      An obsolete style attribute starts with $ (such as $Path).

      When this violation is present, these obsolete style attributes are parsed as attributes, not as cookies, and interpreted as an attribute. If you are not interested in the value, use ATTRIBUTES instead.

    • 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 class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CookieCompliance.Violation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class 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.