
net.lightbody.bmp.core.har.HarPageTimings 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;
@JsonWriteNullProperties(value=false)
public class HarPageTimings {
private Long onContentLoad;
private Long onLoad;
public HarPageTimings() {
}
public HarPageTimings(Long onContentLoad, Long onLoad) {
this.onContentLoad = onContentLoad;
this.onLoad = onLoad;
}
public Long getOnContentLoad() {
return onContentLoad;
}
public void setOnContentLoad(Long onContentLoad) {
this.onContentLoad = onContentLoad;
}
public Long getOnLoad() {
return onLoad;
}
public void setOnLoad(Long onLoad) {
this.onLoad = onLoad;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy