MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / getQueryString

Method getQueryString

src/tsd/AbstractHttpQuery.java:200–209  ·  view source on GitHub ↗

Returns the query string parameters passed in the URI.

()

Source from the content-addressed store, hash-verified

198 * Returns the query string parameters passed in the URI.
199 */
200 public Map<String, List<String>> getQueryString() {
201 if (querystring == null) {
202 try {
203 querystring = new QueryStringDecoder(request.getUri()).getParameters();
204 } catch (IllegalArgumentException e) {
205 throw new BadRequestException("Bad query string: " + e.getMessage());
206 }
207 }
208 return querystring;
209 }
210
211 /**
212 * Returns the value of the given query string parameter.

Callers 6

getQueryStringParamMethod · 0.95
hasQueryStringParamMethod · 0.95
getQueryStringParamsMethod · 0.95
sendFileMethod · 0.45
getGnuplotBasePathMethod · 0.45
setPlotParamsMethod · 0.45

Calls 1

getMessageMethod · 0.65

Tested by

no test coverage detected