protected class HttpRequestHandler.ActorServlet
extends javax.servlet.http.HttpServlet
Modifier | Constructor and Description |
---|---|
protected |
ActorServlet() |
Modifier and Type | Method and Description |
---|---|
protected void |
doGet(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handle an HTTP get request by creating a web page as the HTTP
response.
|
protected void |
doPost(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handle an HTTP post request by creating a web page as the HTTP
response.
|
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
protected void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, java.io.IOException
doGet
in class javax.servlet.http.HttpServlet
request
- The HTTP get request.response
- The HTTP response to write to.javax.servlet.ServletException
- If there is a problem reading from the
servlet request or other servlet problemjava.io.IOException
- If there is a problem writing to the servlet
responseprotected void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, java.io.IOException
doPost
in class javax.servlet.http.HttpServlet
request
- The HTTP get request.response
- The HTTP response to write to.javax.servlet.ServletException
- If there is a problem reading from the
servlet request or other servlet problemjava.io.IOException
- If there is a problem writing to the servlet
response