1 19 20 package org.netbeans.modules.httpserver; 21 22 import java.io.IOException ; 23 24 import javax.servlet.http.*; 25 import javax.servlet.ServletException ; 26 31 public class NotFoundServlet extends HttpServlet { 32 33 public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException , IOException { 34 processRequest(req, res); 35 } 36 37 public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException , IOException { 38 processRequest(req, res); 39 } 40 41 public void processRequest(HttpServletRequest req, HttpServletResponse res) throws ServletException , IOException { 42 res.sendError(404); 43 } 44 } | Popular Tags |