Class EditMailingList
java.lang.Object
|
+----javax.servlet.GenericServlet
|
+----javax.servlet.http.HttpServlet
|
+----EditMailingList
- public class EditMailingList
- extends HttpServlet
This servlet edits a mailing list for the admin.
-
EditMailingList()
-
-
doGet(HttpServletRequest, HttpServletResponse)
-
Print the form to modify email ids of the ppl in this mailing list
-
doPost(HttpServletRequest, HttpServletResponse)
-
Create the mailing list
-
init(ServletConfig)
-
Initialise the servlet
EditMailingList
public EditMailingList()
init
public void init(ServletConfig config) throws ServletException
- Initialise the servlet
- Parameters:
- config - ServletConfig
- Overrides:
- init in class GenericServlet
doGet
public void doGet(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException
- Print the form to modify email ids of the ppl in this mailing list
- Parameters:
- req - HttpServletRequest
- res - HttpServletResponse
- Overrides:
- doGet in class HttpServlet
doPost
public void doPost(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException
- Create the mailing list
- Parameters:
- req - HttpServletRequest
- res - HttpServletResponse
- Overrides:
- doPost in class HttpServlet