Added initial SCGI server and a handler for serving JARs from the filesystem.
[jsvc.git] / src / dolda / jsvc / ServerContext.java
index c2d539b..47d4d13 100644 (file)
@@ -1,6 +1,9 @@
 package dolda.jsvc;
 
 public interface ServerContext {
-    public String rootpath();
     public long starttime();
+    public String sysconfig(String key, String def);
+    public String libconfig(String key, String def);
+    public String name();
+    public RequestThread worker(Responder root, Request req, ThreadGroup tg, String name);
 }