|
void | processRequest (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException |
|
void | doGet (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException |
|
void | doPost (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException |
|
- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 51 of file PrintServlet.java.
◆ doGet()
void org.turro.elephant.print.PrintServlet.doGet |
( |
HttpServletRequest |
request, |
|
|
HttpServletResponse |
response |
|
) |
| throws ServletException, IOException |
|
protected |
Definition at line 134 of file PrintServlet.java.
void processRequest(HttpServletRequest request, HttpServletResponse response)
◆ doPost()
void org.turro.elephant.print.PrintServlet.doPost |
( |
HttpServletRequest |
request, |
|
|
HttpServletResponse |
response |
|
) |
| throws ServletException, IOException |
|
protected |
◆ getServletInfo()
String org.turro.elephant.print.PrintServlet.getServletInfo |
( |
| ) |
|
◆ processRequest()
void org.turro.elephant.print.PrintServlet.processRequest |
( |
HttpServletRequest |
request, |
|
|
HttpServletResponse |
response |
|
) |
| throws ServletException, IOException |
|
protected |
Definition at line 125 of file PrintServlet.java.
126 KeyValueMap map =
new KeyValueMap();
127 for(String key : request.getParameterMap().keySet()) {
128 map.put(key, URLDecoder.decode(request.getParameter(key), StandardCharsets.UTF_8));
130 processPrint(
new ElephantApplication(request, response), request.getPathInfo(), map);
The documentation for this class was generated from the following file: