public final class Syntax extends Object
Use in a similar way as you would Objects.requireNonNull(Object)
| Constructor and Description |
|---|
Syntax() |
| Modifier and Type | Method and Description |
|---|---|
static void |
requireValidRFC2616Token(String value,
String msg)
Per RFC2616: Section 2.2, a token follows these syntax rules
|
static void |
requireValidRFC6265CookieValue(String value)
Per RFC6265, Cookie.value follows these syntax rules
|
public static void requireValidRFC2616Token(String value, String msg)
token = 1*<any CHAR except CTLs or separators>
CHAR = <any US-ASCII character (octets 0 - 127)>
CTL = <any US-ASCII control character
(octets 0 - 31) and DEL (127)>
separators = "(" | ")" | "<" | ">" | "@"
| "," | ";" | ":" | "\" | <">
| "/" | "[" | "]" | "?" | "="
| "{" | "}" | SP | HT
value - the value to testmsg - the message to be prefixed if an IllegalArgumentException is thrown.IllegalArgumentException - if the value is invalid per specpublic static void requireValidRFC6265CookieValue(String value)
cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
; US-ASCII characters excluding CTLs,
; whitespace DQUOTE, comma, semicolon,
; and backslash
value - the value to testIllegalArgumentException - if the value is invalid per specCopyright © 2010 - 2020 Adobe. All Rights Reserved