[jackrabbit] 04/07: Refresh servlet-api.patch

Markus Koschany apo at moszumanska.debian.org
Thu Dec 15 18:45:19 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo pushed a commit to branch master
in repository jackrabbit.

commit 39a8009e70037fbabfc2c7970d6e9ee40f4b192d
Author: Markus Koschany <apo at debian.org>
Date:   Thu Dec 15 19:10:51 2016 +0100

    Refresh servlet-api.patch
---
 debian/patches/series            |   1 +
 debian/patches/servlet-api.patch | 160 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 161 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..8a949c8
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+servlet-api.patch
diff --git a/debian/patches/servlet-api.patch b/debian/patches/servlet-api.patch
new file mode 100644
index 0000000..a64accb
--- /dev/null
+++ b/debian/patches/servlet-api.patch
@@ -0,0 +1,160 @@
+From: Markus Koschany <apo at debian.org>
+Date: Thu, 15 Dec 2016 19:10:39 +0100
+Subject: servlet api
+
+---
+ .../jackrabbit/webdav/WebdavRequestImpl.java       | 98 ++++++++++++++++++++--
+ 1 file changed, 92 insertions(+), 6 deletions(-)
+
+diff --git a/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavRequestImpl.java b/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavRequestImpl.java
+index 12b961d..feef42d 100644
+--- a/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavRequestImpl.java
++++ b/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavRequestImpl.java
+@@ -76,6 +76,17 @@ import org.slf4j.LoggerFactory;
+ import org.w3c.dom.Document;
+ import org.w3c.dom.Element;
+ import org.xml.sax.SAXException;
++import java.lang.IllegalStateException;
++import java.util.Collection;
++import javax.servlet.AsyncContext;
++import javax.servlet.DispatcherType;
++import javax.servlet.ServletContext;
++import javax.servlet.ServletException;
++import javax.servlet.ServletRequest;
++import javax.servlet.ServletResponse;
++import javax.servlet.http.HttpServletResponse;
++import javax.servlet.http.HttpUpgradeHandler;
++import javax.servlet.http.Part;
+ 
+ /**
+  * <code>WebdavRequestImpl</code>...
+@@ -822,11 +833,11 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+         return httpRequest.getHeader(s);
+     }
+ 
+-    public Enumeration<?> getHeaders(String s) {
++    public Enumeration<String> getHeaders(String s) {
+         return httpRequest.getHeaders(s);
+     }
+ 
+-    public Enumeration<?> getHeaderNames() {
++    public Enumeration<String> getHeaderNames() {
+         return httpRequest.getHeaderNames();
+     }
+ 
+@@ -910,7 +921,7 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+         return httpRequest.getAttribute(s);
+     }
+ 
+-    public Enumeration<?> getAttributeNames() {
++    public Enumeration<String> getAttributeNames() {
+         return httpRequest.getAttributeNames();
+     }
+ 
+@@ -938,7 +949,7 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+         return httpRequest.getParameter(s);
+     }
+ 
+-    public Enumeration<?> getParameterNames() {
++    public Enumeration<String> getParameterNames() {
+         return httpRequest.getParameterNames();
+     }
+ 
+@@ -946,7 +957,7 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+         return httpRequest.getParameterValues(s);
+     }
+ 
+-    public Map<?,?> getParameterMap() {
++    public Map<String,String[]> getParameterMap() {
+         return httpRequest.getParameterMap();
+     }
+ 
+@@ -990,7 +1001,7 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+         return httpRequest.getLocale();
+     }
+ 
+-    public Enumeration<?> getLocales() {
++    public Enumeration<Locale> getLocales() {
+         return httpRequest.getLocales();
+     }
+ 
+@@ -1005,4 +1016,79 @@ public class WebdavRequestImpl implements WebdavRequest, DavConstants {
+     public String getRealPath(String s) {
+         return httpRequest.getRealPath(s);
+     }
++    // Compat Servlet 2.4
++    public int getRemotePort() {
++       return httpRequest.getRemotePort();
++    }
++    public int getLocalPort() {
++       return httpRequest.getLocalPort();
++    }
++
++    public String getLocalName() {
++       return httpRequest.getLocalName();
++    }
++
++    public String getLocalAddr() {
++       return httpRequest.getLocalAddr();
++    }
++    //---< servlet 3.1 >---
++    public Part getPart(String name) throws IOException, IllegalStateException, ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public Collection<Part> getParts() throws IOException, IllegalStateException, ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public void logout() throws ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public void login(String username, String password) throws ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public boolean authenticate(HttpServletResponse response) throws IOException, ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public DispatcherType getDispatcherType() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public AsyncContext getAsyncContext() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public boolean isAsyncSupported() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public boolean isAsyncStarted() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public AsyncContext startAsync(ServletRequest servletRequest, ServletResponse servletResponse) {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public AsyncContext startAsync() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public ServletContext getServletContext() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public <T extends HttpUpgradeHandler> T upgrade(java.lang.Class<T> httpUpgradeHandlerClass) throws java.io.IOException, ServletException {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public String changeSessionId() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
++
++    public long getContentLengthLong() {
++        throw new UnsupportedOperationException("Not supported.");
++    }
+ }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackrabbit.git



More information about the pkg-java-commits mailing list