Added an optional server-context name fetching operation.
[jsvc.git] / src / dolda / jsvc / j2ee / StandardContext.java
diff --git a/src/dolda/jsvc/j2ee/StandardContext.java b/src/dolda/jsvc/j2ee/StandardContext.java
new file mode 100644 (file)
index 0000000..e7e3f6d
--- /dev/null
@@ -0,0 +1,14 @@
+package dolda.jsvc.j2ee;
+
+import dolda.jsvc.*;
+import javax.servlet.*;
+
+public class StandardContext extends J2eeContext {
+    StandardContext(ServletConfig cfg) {
+       super(cfg);
+    }
+    
+    public String name() {
+       return(null);
+    }
+}