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

Sets JHttpQuery#method to HttpMethod#POST.

The same as

this.method(HttpMethod.POST);
Returns
this Usage:
JHttpQuery httpQuery = new JHttpQuery().post();

Definition at line 89 of file JHttpQuery.java.

89  {
90  return method(HttpMethod.POST);
91  }