
net.lightbody.bmp.core.har.HarPostData 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.annotate.JsonWriteNullProperties;
import java.util.List;
@JsonWriteNullProperties(value=false)
public class HarPostData {
private String mimeType;
private List params;
private String text;
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
public List getParams() {
return params;
}
public void setParams(List params) {
this.params = params;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy