Returns whether or not the given query string parameter was passed. @param paramname Name of the query string parameter to get. @return true if the parameter
(final String paramname)
| 247 | * @return {@code true} if the parameter |
| 248 | */ |
| 249 | public boolean hasQueryStringParam(final String paramname) { |
| 250 | return getQueryString().get(paramname) != null; |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * Returns all the values of the given query string parameter. |
no test coverage detected