public final class Syntax
extends java.lang.Object
Use in a similar way as you would Objects.requireNonNull(Object)
| Constructor | Description |
|---|---|
Syntax() |
| Modifier and Type | Method | Description |
|---|---|---|
static void |
requireValidRFC2616Token(java.lang.String value,
java.lang.String msg) |
Per RFC2616: Section 2.2, a token follows these syntax rules
|
static void |
requireValidRFC6265CookieValue(java.lang.String value) |
Per RFC6265, Cookie.value follows these syntax rules
|
public static void requireValidRFC2616Token(java.lang.String value,
java.lang.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.java.lang.IllegalArgumentException - if the value is invalid per specpublic static void requireValidRFC6265CookieValue(java.lang.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 testjava.lang.IllegalArgumentException - if the value is invalid per specCopyright © 1995–2018 Webtide. All rights reserved.