home *** CD-ROM | disk | FTP | other *** search
/ Enter 2002 January / EnterCD 1_2002.iso / Internet / HomeSite 5.0 / HomeSite_5_Trial_Installer.exe / data1.cab / Wizards / Java / Servlet.wizml < prev   
Encoding:
Text File  |  2001-10-11  |  638 b   |  33 lines

  1. import javax.servlet.*;
  2. import javax.servlet.http.*;
  3. import java.io.*;
  4.  
  5. public class $${ClassName} extends HttpServlet {
  6. <wizif init eq "true">
  7.   public void init() throws ServletException {
  8.  
  9.   }
  10. </wizif>
  11.  
  12. <wizif doGet eq "true">
  13.   protected void doGet(HttpServletRequest request, HttpServletResponse response)
  14.       throws ServletException, IOException {
  15.  
  16.   }
  17. </wizif>
  18.  
  19. <wizif doPost eq "true">
  20.   protected void doPost(HttpServletRequest request, HttpServletResponse response)
  21.       throws ServletException, IOException {
  22.  
  23.   }
  24. </wizif>
  25.  
  26. <wizif destroy eq "true">
  27.   public void destroy(){
  28.  
  29.   }
  30. </wizif>
  31. }
  32.  
  33.