cffb71c968
OBS-URL: https://build.opensuse.org/package/show/Java:packages/glassfish-jsp?expand=0&rev=15
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
--- 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 @@
|
|
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");
|
|
+ }
|
|
}
|