
net.lightbody.bmp.core.har.Har 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.ObjectMapper;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Writer;
public class Har {
private HarLog log;
public Har() {
}
public Har(HarLog log) {
this.log = log;
}
public HarLog getLog() {
return log;
}
public void setLog(HarLog log) {
this.log = log;
}
public void writeTo(Writer writer) throws IOException {
ObjectMapper om = new ObjectMapper();
om.writeValue(writer, this);
}
public void writeTo(OutputStream os) throws IOException {
ObjectMapper om = new ObjectMapper();
om.writeValue(os, this);
}
public void writeTo(File file) throws IOException {
ObjectMapper om = new ObjectMapper();
om.writeValue(file, this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy