All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.httpmock.dto.ConfigurationDto Maven / Gradle / Ivy

package com.github.httpmock.dto;

import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;

public class ConfigurationDto {

	private RequestDto request;
	private ResponseDto response;

	public ConfigurationDto() {
	}

	public ConfigurationDto(RequestDto request, ResponseDto response) {
		this.request = request;
		this.response = response;
	}

	public RequestDto getRequest() {
		return request;
	}

	public void setRequest(RequestDto request) {
		this.request = request;
	}

	public ResponseDto getResponse() {
		return response;
	}

	public void setResponse(ResponseDto response) {
		this.response = response;
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy