merge with branch issue-109

This commit is contained in:
Sebastian Sdorra
2012-04-10 14:44:32 +02:00
6 changed files with 79 additions and 20 deletions

View File

@@ -169,6 +169,19 @@ public class HttpRequest
return username;
}
/**
* Method description
*
*
* @return
*
* @since 1.14
*/
public boolean isDecodeGZip()
{
return decodeGZip;
}
//~--- set methods ----------------------------------------------------------
/**
@@ -188,6 +201,22 @@ public class HttpRequest
return this;
}
/**
* Method description
*
*
* @param decodeGZip
*
* @return
*
* @since 1.14
*/
public HttpRequest setDecodeGZip(boolean decodeGZip)
{
this.decodeGZip = decodeGZip;
return this;
}
/**
* Method description
*
@@ -247,6 +276,9 @@ public class HttpRequest
//~--- fields ---------------------------------------------------------------
/** Field description */
private boolean decodeGZip = false;
/** Field description */
private Map<String, List<String>> headers;