You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2005/03/23 16:38:21 UTC

svn commit: r158784 - cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java

Author: cziegeler
Date: Wed Mar 23 07:38:20 2005
New Revision: 158784

URL: http://svn.apache.org/viewcvs?view=rev&rev=158784
Log:
Add new methods from 2.2

Modified:
    cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java

Modified: cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java
URL: http://svn.apache.org/viewcvs/cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java?view=diff&r1=158783&r2=158784
==============================================================================
--- cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java (original)
+++ cocoon/blocks/unsupported/taglib/trunk/java/org/apache/cocoon/jxpath/JXPathCocoonContexts.java Wed Mar 23 07:38:20 2005
@@ -31,6 +31,7 @@
 import org.apache.commons.jxpath.servlet.Constants;
 import org.apache.commons.jxpath.servlet.KeywordVariables;
 
+import java.io.IOException;
 import java.io.InputStream;
 import java.net.MalformedURLException;
 import java.net.URL;
@@ -346,6 +347,49 @@
 
         public String getAuthType() {
             return this.delegate.getAuthType();
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#getAttribute(java.lang.String, int)
+         */
+        public Object getAttribute(String name, int scope) {
+            return this.delegate.getAttribute(name, scope);
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#getAttributeNames(int)
+         */
+        public Enumeration getAttributeNames(int scope) {
+            return this.delegate.getAttributeNames(scope);
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#getInputStream()
+         */
+        public InputStream getInputStream() 
+        throws IOException, UnsupportedOperationException {
+            return this.delegate.getInputStream();
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#getSitemapPath()
+         */
+        public String getSitemapPath() {
+            return this.delegate.getSitemapPath();
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#removeAttribute(java.lang.String, int)
+         */
+        public void removeAttribute(String name, int scope) {
+            this.delegate.removeAttribute(name, scope);
+        }
+
+        /**
+         * @see org.apache.cocoon.environment.Request#setAttribute(java.lang.String, java.lang.Object, int)
+         */
+        public void setAttribute(String name, Object o, int scope) {
+            this.delegate.setAttribute(name, o, scope);
         }
     }