Method Summary |
|
public boolean | MoveUploadedFile(File new_file) Moves the uploaded file attached to the request to the specified file
location, returning true if successful. |
public boolean | containsXMLFeed() Returns true if request contains an XML document. |
public String | getContentAsString(boolean delete_tmp_file) Returns the content of a muli-part content request as a String . |
public Enumeration | getFileNames() Returns the names of files which were included in the request. |
public Map | getHeaders() Returns a Map of header parameter names to values
included in the request. |
public String | getParameter(String name) Returns the query string value for the specified parameter name. |
public String | getParameterDescription() Returns a String representation of the parameters and their values
of the request. |
public Enumeration | getParameterNames() Returns an Enumeration of the query string parameter names. |
public String[] | getParameterValues(String name) Returns the query string values for the specified parameter name. |
public String | getRemoteAddress() Returns the remote address making this request. |
public String | getStringFromReqReader() Retrieves the body of the request as character data using a BufferedReader
and returns as a String . |
public File | getUploadedFile() Returns the uploaded file. |
public String | getUploadedFileName() Returns the name of the uploaded file. |
public boolean | hasUploadedFiles() Returns true if the request was of a multi-part content type. |
public boolean | isContentBinary() Returns true if the content attached to the request was binary. |