Initial http-server work.

This commit is contained in:
FrozenCow 2011-02-05 04:33:27 +01:00
parent 711341ec47
commit bf0edea7e2
4 changed files with 163 additions and 40 deletions

View file

@ -0,0 +1,7 @@
package org.dynmap.web;
import java.io.IOException;
public interface HttpHandler {
void handle(String path, HttpRequest request, HttpResponse response) throws IOException;
}