1 package com.atlassian.gzipfilter.test.web;
2
3 import java.io.IOException;
4 import javax.servlet.ServletException;
5 import javax.servlet.http.HttpServlet;
6 import javax.servlet.http.HttpServletRequest;
7 import javax.servlet.http.HttpServletResponse;
8
9 /**
10 * A noop servlet to use with HeaderRewriterFilter
11 */
12 public class NoopServlet extends HttpServlet
13 {
14 protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
15 {
16 }
17 }