This is an automated email from the git hooks/post-receive script. apo pushed a commit to branch master in repository jackrabbit.
commit 961c234f494f5f6077617e03440bf34c48d155d4 Author: Markus Koschany <[email protected]> Date: Sat Nov 4 23:47:59 2017 +0100 Drop servlet-api.patch --- debian/patches/series | 1 - debian/patches/servlet-api.patch | 210 --------------------------------------- 2 files changed, 211 deletions(-) diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 8a949c8..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -servlet-api.patch diff --git a/debian/patches/servlet-api.patch b/debian/patches/servlet-api.patch deleted file mode 100644 index b765764..0000000 --- a/debian/patches/servlet-api.patch +++ /dev/null @@ -1,210 +0,0 @@ -From: Markus Koschany <[email protected]> -Date: Thu, 15 Dec 2016 19:10:39 +0100 -Subject: servlet api - ---- - .../jackrabbit/webdav/WebdavRequestImpl.java | 98 ++++++++++++++++++++-- - .../jackrabbit/webdav/WebdavResponseImpl.java | 33 ++++++++ - 2 files changed, 125 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."); -+ } - } -diff --git a/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavResponseImpl.java b/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavResponseImpl.java -index 771d00b..676668a 100644 ---- a/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavResponseImpl.java -+++ b/jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/WebdavResponseImpl.java -@@ -43,6 +43,8 @@ import java.io.OutputStreamWriter; - import java.io.PrintWriter; - import java.io.Writer; - import java.util.Locale; -+import javax.servlet.ServletException; -+import java.util.Collection; - - /** - * WebdavResponseImpl implements the <code>WebdavResponse</code> interface. -@@ -310,4 +312,35 @@ public class WebdavResponseImpl implements WebdavResponse { - public Locale getLocale() { - return httpResponse.getLocale(); - } -+ // Compat Servlet 2.4 -+ public void setCharacterEncoding(String env) { -+ httpResponse.setCharacterEncoding(env); -+ } -+ public String getContentType() { -+ return httpResponse.getContentType(); -+ } -+ //---< servlet 3.0 >--- -+ public Collection<String> getHeaderNames() { -+ throw new UnsupportedOperationException("Not supported."); -+ } -+ -+ public String getHeader(String name) { -+ throw new UnsupportedOperationException("Not supported."); -+ } -+ -+ public Collection<String> getHeaders(String name) { -+ throw new UnsupportedOperationException("Not supported."); -+ } -+ -+ public void logout() throws ServletException { -+ throw new UnsupportedOperationException("Not supported."); -+ } -+ -+ public int getStatus() { -+ throw new UnsupportedOperationException("Not supported."); -+ } -+ -+ public void setContentLengthLong(long length) { -+ throw new UnsupportedOperationException("Not supported."); -+ } - } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackrabbit.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

