This commit is contained in:
parent
cffb71c968
commit
48dc8a8450
@ -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: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
|
+++ 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() {
|
public String getVirtualServerName() {
|
||||||
throw new UnsupportedOperationException("Not implemented yet");
|
throw new UnsupportedOperationException("Not implemented yet");
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public void setResponseCharacterEncoding(String charset) {
|
+ public void setResponseCharacterEncoding(String charset) {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public String getResponseCharacterEncoding() {
|
+ public String getResponseCharacterEncoding() {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public void setRequestCharacterEncoding(String charset) {
|
+ public void setRequestCharacterEncoding(String charset) {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public String getRequestCharacterEncoding() {
|
+ public String getRequestCharacterEncoding() {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public void setSessionTimeout(int sessionTimeout) {
|
+ public void setSessionTimeout(int sessionTimeout) {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public int getSessionTimeout() {
|
+ public int getSessionTimeout() {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
|
||||||
+ public ServletRegistration.Dynamic addJspFile(String servletName, String jspFile) {
|
+ public ServletRegistration.Dynamic addJspFile(String servletName, String jspFile) {
|
||||||
+ throw new UnsupportedOperationException("Not implemented yet");
|
+ throw new UnsupportedOperationException("Not implemented yet");
|
||||||
+ }
|
+ }
|
||||||
|
Loading…
Reference in New Issue
Block a user