Enum Class 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
- 
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E>Nested classes/interfaces inherited from interface ComplianceViolation
ComplianceViolation.CapturingListener, ComplianceViolation.Event, ComplianceViolation.Listener, ComplianceViolation.LoggingListener, ComplianceViolation.Mode - 
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn obsolete style attribute was found in theCookieheader.An obsolete style attribute was found in theCookieheader.Quotes are not balanced or are embedded in value.Deprecated, for removal: This API element is subject to removal in a future version.A comma was found as separator between cookies.A backslash was found in a quoted cookie value.An invalid cookie was found, without a more specific violation.Whitespace was found around the cookie name and/or around the cookie value.Deprecated, for removal: This API element is subject to removal in a future version.no replacement because was mistakenly considered a violationAllow spaces within values without quotes.Special characters were found in a quoted cookie value.Allows quotes to be stripped from values. - 
Method Summary
Modifier and TypeMethodDescriptiongetName()getURL()static CookieCompliance.ViolationReturns the enum constant of this class with the specified name.static CookieCompliance.Violation[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface ComplianceViolation
isAllowedBy 
- 
Enum Constant Details
- 
COMMA_NOT_VALID_OCTET
@Deprecated(since="10.0.14", forRemoval=true) public static final CookieCompliance.Violation COMMA_NOT_VALID_OCTETDeprecated, for removal: This API element is subject to removal in a future version.UseSPECIAL_CHARS_IN_QUOTESinstead.A comma was found in a cookie value. - 
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_PREFIXEDDeprecated, 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
Special characters were found in a quoted cookie value. - 
ESCAPE_IN_QUOTES
A backslash was found in a quoted cookie value. - 
BAD_QUOTES
Quotes are not balanced or are embedded in value. - 
INVALID_COOKIES
An invalid cookie was found, without a more specific violation. When this violation is not allowed, an exception is thrown. - 
ATTRIBUTES
An obsolete style attribute was found in theCookieheader. (Has no effect onSet-Cookieheader)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
An obsolete style attribute was found in theCookieheader. (Has no effect onSet-Cookieheader)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
ATTRIBUTESinstead. - 
OPTIONAL_WHITE_SPACE
Whitespace was found around the cookie name and/or around the cookie value. - 
SPACE_IN_VALUES
Allow spaces within values without quotes. - 
STRIPPED_QUOTES
Allows quotes to be stripped from values. 
 - 
 - 
Method Details
- 
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
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 nameNullPointerException- if the argument is null
 - 
getName
- Specified by:
 getNamein interfaceComplianceViolation- Returns:
 - The name of the violation.
 
 - 
getURL
- Specified by:
 getURLin interfaceComplianceViolation- Returns:
 - A URL to the specification that provides more information regarding the requirement that may be violated.
 
 - 
getDescription
- Specified by:
 getDescriptionin interfaceComplianceViolation- Returns:
 - A short description of the violation.
 
 
 - 
 
SPECIAL_CHARS_IN_QUOTESinstead.