
net.lightbody.bmp.core.har.HarTimings 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;
public class HarTimings {
private long blocked;
private long dns;
private long connect;
private long send;
private long wait;
private long receive;
public HarTimings() {
}
public HarTimings(long blocked, long dns, long connect, long send, long wait, long receive) {
this.blocked = blocked;
this.dns = dns;
this.connect = connect;
this.send = send;
this.wait = wait;
this.receive = receive;
}
public Long getBlocked() {
return blocked;
}
public void setBlocked(Long blocked) {
this.blocked = blocked;
}
public Long getDns() {
return dns;
}
public void setDns(Long dns) {
this.dns = dns;
}
public Long getConnect() {
return connect;
}
public void setConnect(Long connect) {
this.connect = connect;
}
public long getSend() {
return send;
}
public void setSend(long send) {
this.send = send;
}
public long getWait() {
return wait;
}
public void setWait(long wait) {
this.wait = wait;
}
public long getReceive() {
return receive;
}
public void setReceive(long receive) {
this.receive = receive;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy