Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist. See ServletConfig#getInitParameter. This method is supplied for convenience. It gets the value of the named parameter from the servlet's S
(String name)
| 70 | * @return String a <code>String</code> containing the value of the initialization parameter |
| 71 | */ |
| 72 | @Override |
| 73 | public String getInitParameter(String name) { |
| 74 | return getServletConfig().getInitParameter(name); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Returns the names of the servlet's initialization parameters as an <code>Enumeration</code> of |
nothing calls this directly
no test coverage detected