Added initial SCGI server and a handler for serving JARs from the filesystem.
[jsvc.git] / src / dolda / jsvc / ServerContext.java
index a47a714..47d4d13 100644 (file)
@@ -2,4 +2,8 @@ package dolda.jsvc;
 
 public interface ServerContext {
     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);
 }