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 304 not modified, depending on the URL
11   */
12  public class NotModifiedServlet extends HttpServlet
13  {
14      protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
15      {
16          resp.setStatus(304);
17          // response should have an no body
18      }
19  }