Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
JHttpQuery<T> com.griddynamics.jagger.invoker.v2.JHttpQuery< T >.path ( String  path)

Sets path to JHttpQuery#path field.

Returns
this Usage:
JHttpQuery httpQuery = new JHttpQuery().path("/products");

Definition at line 350 of file JHttpQuery.java.

350  {
351  this.path = StringUtils.startsWith(path, "/") ? path : "/" + path;
352  return this;
353  }