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

Definition at line 450 of file JHttpQuery.java.

450  {
451  if (this == o) return true;
452  if (o == null || getClass() != o.getClass()) return false;
453 
454  JHttpQuery<?> httpQuery = (JHttpQuery<?>) o;
455 
456  if (method != httpQuery.method) return false;
457  if (headers != null ? !headers.equals(httpQuery.headers) : httpQuery.headers != null) return false;
458  if (body != null ? !body.equals(httpQuery.body) : httpQuery.body != null) return false;
459  if (responseBodyType != null ? !responseBodyType.equals(httpQuery.responseBodyType) : httpQuery.responseBodyType != null)
460  return false;
461  if (queryParams != null ? !queryParams.equals(httpQuery.queryParams) : httpQuery.queryParams != null) return false;
462  return path != null ? path.equals(httpQuery.path) : httpQuery.path == null;
463 
464  }