public class QueryParameterMap extends Object
This class is even useful on the server side, as ServletRequest.getParameter(String)
can try to parse into the payload (and that can cause an exception if the payload is already consumed.
See HUDSON-8056.)
So if you are handling the payload yourself and only want to access the query parameters, use this class.
Constructor and Description |
---|
QueryParameterMap(javax.servlet.http.HttpServletRequest req) |
QueryParameterMap(String queryString) |
public QueryParameterMap(String queryString)
queryString
- String that looks like abc=def&ghi=jkl
public QueryParameterMap(javax.servlet.http.HttpServletRequest req)
Copyright © 2004–2018. All rights reserved.