Returns all the values of the given query string parameter. In case this parameter occurs multiple times in the URL, this method is useful to get all the values. @param paramname Name of the query string parameter to get. @return The values of the parameter or null if this parameter wasn
(final String paramname)
| 260 | * wasn't passed in the URI. |
| 261 | */ |
| 262 | public List<String> getQueryStringParams(final String paramname) { |
| 263 | return getQueryString().get(paramname); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Returns only the path component of the URI as a string |
no test coverage detected