de.sstoehr.harreader.model.HarContent 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.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Objects;
/**
* Information about the response's content.
* @see specification
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class HarContent {
private Long size;
private Long compression;
private String mimeType;
private String text;
private String encoding;
private String comment;
/**
* @return Length of returned content in bytes, null if not present.
*/
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
/**
* @return Number of bytes saved by compression, null if not present.
*/
public Long getCompression() {
return compression;
}
public void setCompression(Long compression) {
this.compression = compression;
}
/**
* @return MIME-Type of response, null if not present. May include the charset.
*/
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
/**
* @return Response body loaded from server or cache, null if not present.
* Binary content may be encoded using encoding specified by {@link #getEncoding()}.
*/
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
/**
* @return Encoding used for encoding response body, null if not present.
* @see #getText()
*/
public String getEncoding() {
return encoding;
}
public void setEncoding(String encoding) {
this.encoding = encoding;
}
/**
* @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;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
HarContent that = (HarContent) o;
return Objects.equals(size, that.size) &&
Objects.equals(compression, that.compression) &&
Objects.equals(mimeType, that.mimeType) &&
Objects.equals(text, that.text) &&
Objects.equals(encoding, that.encoding) &&
Objects.equals(comment, that.comment);
}
@Override
public int hashCode() {
return Objects.hash(size, compression, mimeType, text, encoding, comment);
}
}