
net.lightbody.bmp.core.har.HarContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
package net.lightbody.bmp.core.har;
import org.codehaus.jackson.map.annotate.JsonSerialize;
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
public class HarContent {
private long size;
private Long compression;
private String mimeType = "";
private String text;
public long getSize() {
return size;
}
public void setSize(long size) {
this.size = size;
}
public Long getCompression() {
return compression;
}
public void setCompression(Long compression) {
this.compression = compression;
}
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy