de.sstoehr.harreader.model.HarRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of har-reader Show documentation
Show all versions of har-reader Show documentation
A library to access HTTP archive format with Java
package de.sstoehr.harreader.model;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/**
* Information about a performed request.
* @see specification
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class HarRequest {
protected static final Long DEFAULT_SIZE = -1L;
private HttpMethod method;
private String url;
private String httpVersion;
private List cookies;
private List headers;
private List queryString;
private HarPostData postData;
private Long headersSize;
private Long bodySize;
private String comment;
private Map additional = new HashMap<>();
/**
* @return Request method, null if not present.
*/
public HttpMethod getMethod() {
return method;
}
public void setMethod(HttpMethod method) {
this.method = method;
}
/**
* @return Absolute URL of the request (fragments are not included), null if not present.
*/
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
/**
* @return Request HTTP Version, null if not present.
*/
public String getHttpVersion() {
return httpVersion;
}
public void setHttpVersion(String httpVersion) {
this.httpVersion = httpVersion;
}
/**
* @return List of cookie objects.
*/
public List getCookies() {
if (cookies == null) {
cookies = new ArrayList<>();
}
return cookies;
}
public void setCookies(List cookies) {
this.cookies = cookies;
}
/**
* @return List of header objects.
*/
public List getHeaders() {
if (headers == null) {
headers = new ArrayList<>();
}
return headers;
}
public void setHeaders(List headers) {
this.headers = headers;
}
/**
* @return List of query parameter objects.
*/
public List getQueryString() {
if (queryString == null) {
queryString = new ArrayList<>();
}
return queryString;
}
public void setQueryString(List queryString) {
this.queryString = queryString;
}
/**
* @return Posted data info.
*/
public HarPostData getPostData() {
if (postData == null) {
postData = new HarPostData();
}
return postData;
}
public void setPostData(HarPostData postData) {
this.postData = postData;
}
/**
* @return Total number of bytes from the start of the HTTP request message until (and including) the double
* CRLF before the body. {@link #DEFAULT_SIZE} if the info is not available.
*/
public Long getHeadersSize() {
if (headersSize == null) {
return DEFAULT_SIZE;
}
return headersSize;
}
public void setHeadersSize(Long headersSize) {
this.headersSize = headersSize;
}
/**
* @return Size of the request body (POST data payload) in bytes.
* {@link #DEFAULT_SIZE} if the info is not available.
*/
public Long getBodySize() {
if (bodySize == null) {
return DEFAULT_SIZE;
}
return bodySize;
}
public void setBodySize(Long bodySize) {
this.bodySize = bodySize;
}
/**
* @return Comment provided by the user or application, null if not present.
*/
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
@JsonAnyGetter
public Map getAdditional() {
return additional;
}
@JsonAnySetter
public void setAdditionalField(String name, Object value) {
this.additional.put(name, value);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
HarRequest that = (HarRequest) o;
return method == that.method &&
Objects.equals(url, that.url) &&
Objects.equals(httpVersion, that.httpVersion) &&
Objects.equals(cookies, that.cookies) &&
Objects.equals(headers, that.headers) &&
Objects.equals(queryString, that.queryString) &&
Objects.equals(postData, that.postData) &&
Objects.equals(headersSize, that.headersSize) &&
Objects.equals(bodySize, that.bodySize) &&
Objects.equals(comment, that.comment) &&
Objects.equals(additional, that.additional);
}
@Override
public int hashCode() {
return Objects.hash(method, url, httpVersion, cookies, headers, queryString, postData, headersSize,
bodySize, comment, additional);
}
}