More work on HttpServer.

This commit is contained in:
FrozenCow 2011-02-05 19:49:58 +01:00
parent bf0edea7e2
commit 226cc5f86c
3 changed files with 187 additions and 174 deletions

View file

@ -6,6 +6,7 @@ import java.util.HashMap;
import java.util.Map;
public class HttpResponse {
public String version = "1.0";
public int statusCode = 200;
public String statusMessage = "OK";
public Map<String, String> fields = new HashMap<String, String>();