|
OOP LoginManager Version 3.7 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ParsedRequestParameters
Interface for HTTP request parameters
| Field Summary | |
|---|---|
static int |
GET
|
static int |
MULTIPART
|
static int |
POST
|
| Method Summary | |
|---|---|
boolean |
containsKey(java.lang.String key)
Returns true if the request parameter for the key is available in this request. |
java.lang.String |
getContextPath()
Returns the context path. |
byte[] |
getDecodedBytes(java.lang.String key)
Return the decoded byte array of the request parameter specified by the name. |
byte[][] |
getDecodedBytesInArray(java.lang.String key)
Return the array of the decoded byte arrays of the request parameter specified by the name. |
java.util.List |
getDecodedBytesInList(java.lang.String key)
Return the List of the decoded byte arrays of the request parameter specified by the name. |
java.lang.String |
getDecodedString(java.lang.String key)
Return the decoded String of the request parameter specified by the name. |
java.lang.String |
getDecodedString(java.lang.String key,
java.lang.String enc)
Return the decoded String of the request parameter specified by the name. |
java.lang.String[] |
getDecodedStringInArray(java.lang.String key)
Return the array of decoded Strings of the request parameter specified by the name. |
java.lang.String[] |
getDecodedStringInArray(java.lang.String key,
java.lang.String enc)
Return the array of decoded Strings of the request parameter specified by the name. |
java.util.List |
getDecodedStringInList(java.lang.String key)
Return the List of decoded Strings of the request parameter specified by the name. |
java.util.List |
getDecodedStringInList(java.lang.String key,
java.lang.String enc)
Return the List of decoded Strings of the request parameter specified by the name. |
java.lang.String |
getEncodedString(java.lang.String key)
Return the URL-encoded String of the request parameter specified by the name. |
java.lang.String[] |
getEncodedStringInArray(java.lang.String key)
Return the array of URL-encoded Strings of the request parameter specified by the name. |
java.util.List |
getEncodedStringInList(java.lang.String key)
Return the List of URL-encoded Strings of the request parameter specified by the name. |
java.lang.String |
getEncoding()
Return the current character encoding of this HTTP request. |
java.lang.String |
getHostHeader()
Returns the host header of the HTTP request. |
java.lang.String[] |
getKeysInArray()
Return the array of the names of the available request parameters. |
java.util.List |
getKeysInList()
Return the List of the names of the available request parameters. |
java.lang.String |
getLastPathInfo()
Returns the last element within the path information. |
int |
getLengthOfDecodedString(java.lang.String key)
Return the length of the decoded String for the specified parameter. |
int[] |
getLengthOfDecodedStringInArray(java.lang.String key)
Return the length of the decoded Strings for the specified parameter in the array. |
int |
getLengthOfEncodedString(java.lang.String key)
Return the length of the encoded String for the specified parameter. |
int[] |
getLengthOfEncodedStringInArray(java.lang.String key)
Return the length of the encoded Strings for the specified parameter in the array. |
int |
getLengthOfLongestDecodedString(java.lang.String key)
Return the length of the longest decoded Strings for the specified parameter. |
int |
getLengthOfLongestEncodedString(java.lang.String key)
Return the length of the longest encoded Strings for the specified parameter. |
int |
getMethod()
Returns the int value indicating the request method, that is GET, POST or MULTIPART. |
java.lang.String |
getPathInfo()
Returns the path information. |
java.lang.String |
getServletPath()
Return the servlet path of the requested URL. |
void |
setEncoding(java.lang.String enc)
Set the character encoding of this HTTP request. |
| Field Detail |
|---|
static final int GET
static final int POST
static final int MULTIPART
| Method Detail |
|---|
java.lang.String getEncoding()
void setEncoding(java.lang.String enc)
boolean containsKey(java.lang.String key)
key - The name of the request parameter.
java.lang.String[] getKeysInArray()
java.util.List getKeysInList()
java.lang.String getEncodedString(java.lang.String key)
key - The name of the request parameter.
java.lang.String[] getEncodedStringInArray(java.lang.String key)
key - The name of the request parameter.
java.util.List getEncodedStringInList(java.lang.String key)
key - The name of the request parameter.
byte[] getDecodedBytes(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
byte[][] getDecodedBytesInArray(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
java.util.List getDecodedBytesInList(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
java.lang.String getDecodedString(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
java.lang.String[] getDecodedStringInArray(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
java.util.List getDecodedStringInList(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
java.lang.String getDecodedString(java.lang.String key,
java.lang.String enc)
throws NestedException
key - The name of the request parameter.enc - The character encoding to be used for decoding.
NestedException
java.lang.String[] getDecodedStringInArray(java.lang.String key,
java.lang.String enc)
throws NestedException
key - The name of the request parameter.enc - The character encoding to be used for decoding.
NestedException
java.util.List getDecodedStringInList(java.lang.String key,
java.lang.String enc)
throws NestedException
key - The name of the request parameter.enc - The character encoding to be used for decoding.
NestedExceptionjava.lang.String getHostHeader()
java.lang.String getServletPath()
java.lang.String getLastPathInfo()
java.lang.String getPathInfo()
java.lang.String getContextPath()
int getMethod()
int getLengthOfEncodedString(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
int[] getLengthOfEncodedStringInArray(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
int getLengthOfLongestEncodedString(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
int getLengthOfDecodedString(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
int[] getLengthOfDecodedStringInArray(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
int getLengthOfLongestDecodedString(java.lang.String key)
throws NestedException
key - The name of the request parameter.
NestedException
|
OOP LoginManager Version 3.7 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
ALL CONTENTS COPYRIGHT 2006, OOP-Research Corporation. All rights reserved.
Any questions and comments are welcome to OOP-Research Corporation.