diff --git a/glassfish-jsp-port-to-servlet-4.0.patch b/glassfish-jsp-port-to-servlet-4.0.patch index 89b529c..11c11e9 100644 --- a/glassfish-jsp-port-to-servlet-4.0.patch +++ b/glassfish-jsp-port-to-servlet-4.0.patch @@ -1,41 +1,34 @@ --- javax.servlet.jsp-2.3.4/src/main/java/org/apache/jasper/servlet/JspCServletContext.java 2024-11-11 17:17:23.900839969 +0100 +++ javax.servlet.jsp-2.3.4/src/main/java/org/apache/jasper/servlet/JspCServletContext.java 2024-11-11 17:20:07.928605001 +0100 -@@ -888,4 +888,39 @@ +@@ -888,4 +888,32 @@ public String getVirtualServerName() { throw new UnsupportedOperationException("Not implemented yet"); } + -+ @Override + public void setResponseCharacterEncoding(String charset) { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public String getResponseCharacterEncoding() { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public void setRequestCharacterEncoding(String charset) { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public String getRequestCharacterEncoding() { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public void setSessionTimeout(int sessionTimeout) { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public int getSessionTimeout() { + throw new UnsupportedOperationException("Not implemented yet"); + } + -+ @Override + public ServletRegistration.Dynamic addJspFile(String servletName, String jspFile) { + throw new UnsupportedOperationException("Not implemented yet"); + }