Added initial SCGI server and a handler for serving JARs from the filesystem.
[jsvc.git] / src / dolda / jsvc / ServerContext.java
1 package dolda.jsvc;
2
3 public interface ServerContext {
4     public long starttime();
5     public String sysconfig(String key, String def);
6     public String libconfig(String key, String def);
7     public String name();
8     public RequestThread worker(Responder root, Request req, ThreadGroup tg, String name);
9 }