Index: HttpContext.java
===================================================================
RCS file: /home/cvspublic/xml-cocoon2/src/org/apache/cocoon/environment/http/HttpContext.java,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 HttpContext.java
--- HttpContext.java	2001/05/09 20:49:44	1.1.1.1
+++ HttpContext.java	2001/06/13 08:05:33
@@ -27,24 +27,28 @@
      * Constructs a HttpContext object from a ServletContext object
      */
     public HttpContext (ServletContext servletContext) {
-                this.servletContext = servletContext;
-        }
+        this.servletContext = servletContext;
+    }
 
     public Object getAttribute(String name) {
-                return servletContext.getAttribute(name);
-        }
+        return servletContext.getAttribute(name);
+    }
 
-        public URL getResource(String path)
-                         throws MalformedURLException {
-                return servletContext.getResource(path);
-        }
+    public URL getResource(String path)
+       throws MalformedURLException {
+       return servletContext.getResource(path);
+    }
 
-        public String getRealPath(String path)
-                         throws MalformedURLException {
-                return servletContext.getRealPath(path);
-        }
+    public String getRealPath(String path)
+      throws MalformedURLException {
+      return servletContext.getRealPath(path);
+    }
 
-        public java.lang.String getMimeType(String file) {
-                return servletContext.getMimeType(file);
-        }
+    public String getMimeType(String file) {
+      return servletContext.getMimeType(file);
+    }
+
+    public String getInitParameter(String name) {
+        return servletContext.getInitParameter(name);
+    }
 }
