(final ServletConfig servletConfig)
| 63 | private Hashtable cnf; |
| 64 | |
| 65 | public void init(final ServletConfig servletConfig) throws ServletException { |
| 66 | super.init(servletConfig); |
| 67 | this.context = servletConfig.getServletContext(); |
| 68 | ShellServlet.NEWLINE = System.getProperty("line.separator"); |
| 69 | ShellServlet.separator = System.getProperty("file.separator"); |
| 70 | this.cnf = new Hashtable(); |
| 71 | this.readConfig(this.getInitParameter("config"), this.cnf); |
| 72 | } |
| 73 | |
| 74 | public void doPost(final HttpServletRequest httpServletRequest, final HttpServletResponse httpServletResponse) throws ServletException, IOException { |
| 75 | if (httpServletRequest.getContentLength() > 20480) { |
nothing calls this directly
no test coverage detected