Made the server context config more secure.
authorFredrik Tolf <fredrik@dolda2000.com>
Thu, 15 Oct 2009 05:07:23 +0000 (07:07 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Thu, 15 Oct 2009 05:07:23 +0000 (07:07 +0200)
src/dolda/jsvc/ServerContext.java
src/dolda/jsvc/j2ee/J2eeContext.java

index 9fd785a..81cb4cd 100644 (file)
@@ -2,5 +2,5 @@ package dolda.jsvc;
 
 public interface ServerContext {
     public long starttime();
-    public java.util.Properties config();
+    public String config(String key);
 }
index c6e09df..5049d26 100644 (file)
@@ -53,8 +53,8 @@ public class J2eeContext implements ServerContext {
        return(ctime);
     }
     
-    public Properties config() {
-       return(config);
+    public String config(String key) {
+       return((String)config.get(key));
     }
     
     public ServletConfig j2eeconfig() {