| Package | Description |
|---|---|
| javax.servlet | |
| javax.servlet.http | |
| javax.servlet.jsp |
| Modifier and Type | Class and Description |
|---|---|
class |
GenericServlet
GenericServlet is a convenient abstract class for defining Servlets.
|
| Modifier and Type | Method and Description |
|---|---|
ServletConfig |
Servlet.getServletConfig()
Returns the servlet configuration, usually the same value as passed
to the init routine.
|
ServletConfig |
GenericServlet.getServletConfig()
Returns this servlet's configuration.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Servlet.init(ServletConfig config)
Initialize the servlet.
|
void |
GenericServlet.init(ServletConfig config)
Initialize the servlet.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpServlet
HttpServlet is a convenient abstract class for creating servlets.
|
| Modifier and Type | Method and Description |
|---|---|
abstract ServletConfig |
PageContext.getServletConfig()
Returns the servletConfig for the JSP page.
|