Initial implementation of RestHttpPage class

This commit is contained in:
Ziver Koc 2014-10-07 15:26:51 +00:00
parent 6e271f56d9
commit a7e6324a10
11 changed files with 81 additions and 35 deletions

View file

@ -70,7 +70,7 @@ public class HttpHeaderParser {
/**
* Parses the HTTP header information from an String
*
* @param in is the string
* @param in is the string
*/
public HttpHeaderParser(String in){
url_attr = new HashMap<String, String>();
@ -94,8 +94,7 @@ public class HttpHeaderParser {
* Parses the first header line and ads the values to
* the map and returns the file name and path
*
* @param header The header String
* @param map The HashMap to put the variables to
* @param line The header String
* @return The path and file name as a String
*/
protected void parseStatusLine(String line){