Fields Summary |
---|
private ArrayList | cookiesThe set of Cookies associated with this Request. |
private HashMap | headersThe set of Headers associated with this Request. Each key is a header
name, while the value is a ArrayList containing one or more actual
values for this header. The values are returned as an Iterator when
you ask for them. |
private ArrayList | localesThe set of Locales associated with this Request. |
private String | methodThe request method used on this Request. |
private HashMap | parametersThe set of request parameters associated with this Request. Each
entry is keyed by the parameter name, pointing at a String array of
the corresponding values. |
private String | queryStringThe query string associated with this Request. |
private String | requestURIThe request URI associated with this Request. |