FileDocCategorySizeDatePackage
ViewSubscribersServlet.javaAPI DocExample747Wed Aug 07 19:26:20 BST 2002com.oreilly.javaxp.httpunit

ViewSubscribersServlet.java

package com.oreilly.javaxp.httpunit;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.IOException;

/**
 * Allows administrators to view the list of subscribers.
 *
 * @author Eric M. Burke
 * @version $Id: ViewSubscribersServlet.java,v 1.1 2002/08/08 00:26:21 jepc Exp $
 */
public class ViewSubscribersServlet extends HttpServlet {
    protected void doGet(HttpServletRequest req,
                         HttpServletResponse res) throws ServletException, IOException {

        res.getWriter().println("<html><body>Hello</body></html>");
//        RequestDispatcher dispatcher =
//                req.getRequestDispatcher("viewSubscribers.jsp");
//
//        dispatcher.forward(req, res);
    }


}