ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/startup/TesterServletEncodeUrl.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/startup/TesterServletEncodeUrl.java
Status
scanned
Type
file
Name
TesterServletEncodeUrl.java
Extension
.java
Programming language
Java
Mime type
text/html
File type
HTML document, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2286 (2.2 KB)
MD5
96467ba9f4113fb0cf339fb2d7ce8f33
SHA1
31b314345f0f7ff7d5092e0aa0a63b7142970637
SHA256
f18b6b15be1267c33a3b139181d190c4d0c9f4f6041e8373f3876bdddcc92780
SHA512

      
    
SHA1_git
0da36e999e99875a9563f8fd404d9da2ca160e9d
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TesterServletEncodeUrl.java | 2.2 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.startup; import java.io.IOException; import java.io.PrintWriter; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * A test servlet that will always encode the url in case the client requires * session persistence but is not configured to support cookies. */ public class TesterServletEncodeUrl extends HttpServlet { private static final long serialVersionUID = 1L; /** * Almost minimal processing for a servlet. * <p> * The request parameter <code>nextUrl</code> specifies the url to which the * caller would like to go next. If supplied, put an encoded url into the * returned HTML page as a hyperlink. */ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/plain"); PrintWriter out = resp.getWriter(); out.print("OK"); String param = req.getParameter("nextUrl"); if (param!=null) { // append an encoded url to carry the sessionids String targetUrl = resp.encodeURL(param); out.print(". You want to go <a href=\""); out.print(targetUrl); out.print("\">here next</a>."); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
43.27
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9