|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.eclipse.jetty.http.HttpFields
public class HttpFields
HTTP Fields. A collection of HTTP header and or Trailer fields.
This class is not synchronized as it is expected that modifications will only be performed by a single thread.
| Nested Class Summary | |
|---|---|
static class |
HttpFields.Field
|
| Field Summary | |
|---|---|
static String |
__01Jan1970
|
static Buffer |
__01Jan1970_BUFFER
|
static String |
__01Jan1970_COOKIE
|
static String |
__COOKIE_DELIM
|
static BufferDateCache |
__dateCache
|
static TimeZone |
__GMT
|
static String |
__separators
|
| Constructor Summary | |
|---|---|
HttpFields()
Constructor. |
|
HttpFields(int maxCookieVersion)
Constructor. |
|
| Method Summary | |
|---|---|
void |
add(Buffer name,
Buffer value)
Add to or set a field. |
void |
add(HttpFields fields)
Add fields from another HttpFields instance. |
void |
add(String name,
String value)
Add to or set a field. |
void |
addDateField(String name,
long date)
Sets the value of a date field. |
void |
addLongField(Buffer name,
long value)
Sets the value of an long field. |
void |
addLongField(String name,
long value)
Sets the value of an long field. |
void |
addSetCookie(HttpCookie cookie)
Format a set cookie value |
void |
addSetCookie(String name,
String value,
String domain,
String path,
long maxAge,
String comment,
boolean isSecure,
boolean isHttpOnly,
int version)
Format a set cookie value |
void |
clear()
Clear the header. |
boolean |
containsKey(Buffer name)
|
boolean |
containsKey(String name)
|
static String |
formatCookieDate(long date)
Format "EEE, dd-MMM-yyyy HH:mm:ss 'GMT'" for cookies |
static void |
formatCookieDate(StringBuilder buf,
long date)
Format "EEE, dd-MMM-yyyy HH:mm:ss 'GMT'" for cookies |
static String |
formatDate(long date)
Format HTTP date "EEE, dd MMM yyyy HH:mm:ss 'GMT'" |
Buffer |
get(Buffer name)
|
long |
getDateField(String name)
Get a header as a date value. |
HttpFields.Field |
getField(int i)
Get a Field by index. |
Enumeration<String> |
getFieldNames()
Get enumeration of header _names. |
long |
getLongField(Buffer name)
Get a header as an long value. |
long |
getLongField(String name)
Get a header as an long value. |
static Float |
getQuality(String value)
|
String |
getStringField(Buffer name)
|
String |
getStringField(String name)
|
Enumeration<String> |
getValues(Buffer name)
Get multi headers |
Enumeration<String> |
getValues(String name)
Get multi headers |
Enumeration<String> |
getValues(String name,
String separators)
Get multi field values with separator. |
static long |
parseDate(String date)
|
void |
put(Buffer name,
Buffer value)
Set a field. |
void |
put(Buffer name,
String value)
Set a field. |
void |
put(String name,
List<?> list)
Set a field. |
void |
put(String name,
String value)
Set a field. |
void |
putDateField(Buffer name,
long date)
Sets the value of a date field. |
void |
putDateField(String name,
long date)
Sets the value of a date field. |
void |
putLongField(Buffer name,
long value)
Sets the value of an long field. |
void |
putLongField(String name,
long value)
Sets the value of an long field. |
void |
putTo(Buffer buffer)
|
static List |
qualityList(Enumeration e)
List values in quality order. |
void |
remove(Buffer name)
Remove a field. |
void |
remove(String name)
Remove a field. |
int |
size()
|
String |
toString()
|
static String |
valueParameters(String value,
Map<String,String> parameters)
Get field value parameters. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final String __COOKIE_DELIM
public static final TimeZone __GMT
public static final BufferDateCache __dateCache
public static final String __separators
public static final String __01Jan1970
public static final Buffer __01Jan1970_BUFFER
public static final String __01Jan1970_COOKIE
| Constructor Detail |
|---|
public HttpFields()
public HttpFields(int maxCookieVersion)
| Method Detail |
|---|
public static String formatDate(long date)
public static void formatCookieDate(StringBuilder buf,
long date)
public static String formatCookieDate(long date)
public static long parseDate(String date)
public Enumeration<String> getFieldNames()
public int size()
public HttpFields.Field getField(int i)
public boolean containsKey(Buffer name)
public boolean containsKey(String name)
public String getStringField(String name)
name - the case-insensitive field name
public String getStringField(Buffer name)
name - the case-insensitive field name
public Buffer get(Buffer name)
name - the case-insensitive field name
public Enumeration<String> getValues(String name)
name - the case-insensitive field name
public Enumeration<String> getValues(Buffer name)
name - the case-insensitive field name
public Enumeration<String> getValues(String name,
String separators)
name - the case-insensitive field nameseparators - String of separators.
public void put(String name,
String value)
name - the name of the fieldvalue - the value of the field. If null the field is cleared.
public void put(Buffer name,
String value)
name - the name of the fieldvalue - the value of the field. If null the field is cleared.
public void put(Buffer name,
Buffer value)
name - the name of the fieldvalue - the value of the field. If null the field is cleared.
public void put(String name,
List<?> list)
name - the name of the fieldlist - the List value of the field. If null the field is cleared.
public void add(String name,
String value)
throws IllegalArgumentException
name - the name of the fieldvalue - the value of the field.
IllegalArgumentException - If the name is a single valued field and already has a
value.
public void add(Buffer name,
Buffer value)
throws IllegalArgumentException
name - the name of the fieldvalue - the value of the field.
IllegalArgumentException - If the name is a single valued field and already has a
value.public void remove(String name)
name - public void remove(Buffer name)
name -
public long getLongField(String name)
throws NumberFormatException
name - the case-insensitive field name
NumberFormatException - If bad long found
public long getLongField(Buffer name)
throws NumberFormatException
name - the case-insensitive field name
NumberFormatException - If bad long foundpublic long getDateField(String name)
name - the case-insensitive field name
public void putLongField(Buffer name,
long value)
name - the field namevalue - the field long value
public void putLongField(String name,
long value)
name - the field namevalue - the field long value
public void addLongField(String name,
long value)
name - the field namevalue - the field long value
public void addLongField(Buffer name,
long value)
name - the field namevalue - the field long value
public void putDateField(Buffer name,
long date)
name - the field namedate - the field date value
public void putDateField(String name,
long date)
name - the field namedate - the field date value
public void addDateField(String name,
long date)
name - the field namedate - the field date valuepublic void addSetCookie(HttpCookie cookie)
cookie - The cookie.
public void addSetCookie(String name,
String value,
String domain,
String path,
long maxAge,
String comment,
boolean isSecure,
boolean isHttpOnly,
int version)
name - the namevalue - the valuedomain - the domainpath - the pathmaxAge - the maximum agecomment - the comment (only present on versions > 0)isSecure - true if secure cookieisHttpOnly - true if for http onlyversion - version of cookie logic to use (0 == default behavior)
public void putTo(Buffer buffer)
throws IOException
IOExceptionpublic String toString()
toString in class Objectpublic void clear()
public void add(HttpFields fields)
fields -
public static String valueParameters(String value,
Map<String,String> parameters)
FieldName : Value ; param1=val1 ; param2=val2
value - The Field value, possibly with parameteres.parameters - A map to populate with the parameters, or null
public static Float getQuality(String value)
public static List qualityList(Enumeration e)
e - Enumeration of values with quality parameters
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||