initial commit
[jpim.git] / src / de / j32 / httplib / HttpGETRequest.java
1 package de.j32.httplib;
2
3 public class HttpGETRequest
4         extends HttpRequest
5 {
6         public HttpGETRequest(String url)
7         {
8                 super(url,"GET");
9         }
10
11         @Override
12         public HttpGETRequest addParameter(String name, byte[] value, String encoding)
13         {
14                 appendParameter(query(), query().length() == 0, name, value);
15                 return this;
16         }
17
18 }