|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.servlet.GenericServlet | +--javax.servlet.http.HttpServlet | +--com.mortbay.Jetty.MultiPartCount
Constructor Summary | |
MultiPartCount()
|
Method Summary | |
void |
init()
Acts as a convenience method, so that you do not have to store a ServletConfig object to use as a
parameter. |
void |
service(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Receives standard HTTP requests from the public service method and dispatches
them to the do xxx methods defined in
this class. |
Methods inherited from class javax.servlet.http.HttpServlet |
doDelete,
doGet,
doOptions,
doPost,
doPut,
doTrace,
getLastModified,
service |
Methods inherited from class javax.servlet.GenericServlet |
destroy,
getInitParameter,
getInitParameterNames,
getServletConfig,
getServletContext,
getServletInfo,
init,
log,
log |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public MultiPartCount()
Method Detail |
public void init()
ServletConfig
object to use as a
parameter.
If you extend GenericServlet
, simply override
this method and it will be called by
GenericServlet.init(ServletConfig config)
.
public void service(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) throws javax.servlet.ServletException, java.io.IOException
service
method and dispatches
them to the do
xxx methods defined in
this class. This method is an HTTP-specific version of the
javax.servlet.Servlet.service
method. You will probably
not need to override this method.req
- the HttpServletRequest
object that
contains the request the client made of
the servletresp
- the HttpServletResponse
object that
contains the response the servlet returns
to the clientServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |