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

Sets JHttpQuery#method to HttpMethod#DELETE.

The same as

this.method(HttpMethod.DELETE);
Returns
this Usage:
JHttpQuery httpQuery = new JHttpQuery().delete();

Definition at line 125 of file JHttpQuery.java.

125  {
126  return method(HttpMethod.DELETE);
127  }