View Javadoc

1   package com.atlassian.gzipfilter.test.web;
2   
3   import javax.servlet.http.HttpServlet;
4   import javax.servlet.http.HttpServletRequest;
5   import javax.servlet.http.HttpServletResponse;
6   import javax.servlet.ServletException;
7   import java.io.IOException;
8   
9   /**
10   * A test servlet that sends a temporary redirect (302) to the client
11   */
12  public class RedirectServlet extends HttpServlet
13  {
14      protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
15      {
16          resp.sendRedirect("test.html");
17          // response should have no body
18      }
19  }