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

Sets JHttpQuery#method to HttpMethod#OPTIONS.

The same as

this.method(HttpMethod.OPTIONS);
Returns
this Usage:
JHttpQuery httpQuery = new JHttpQuery().options();

Definition at line 161 of file JHttpQuery.java.

161  {
162  return method(HttpMethod.OPTIONS);
163  }