in jobs-service/jobs-recipients/job-recipient-common-http/src/main/java/org/kie/kogito/job/recipient/common/http/HTTPRequest.java [74:87]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof HTTPRequest)) {
return false;
}
HTTPRequest that = (HTTPRequest) o;
return Objects.equals(getUrl(), that.getUrl()) &&
getMethod() == that.getMethod() &&
Objects.equals(getHeaders(), that.getHeaders()) &&
Objects.equals(getQueryParams(), that.getQueryParams()) &&
Objects.equals(getBody(), that.getBody());
}