Class HarTiming

java.lang.Object
de.sstoehr.harreader.model.HarTiming

public class HarTiming
extends Object
  • Field Details

  • Constructor Details

  • Method Details

    • getBlocked

      public Integer getBlocked()
      Returns:
      Time spent in a queue waiting for a network connection. DEFAULT_TIME if the timing does not apply to the current request.
    • setBlocked

      public void setBlocked​(Integer blocked)
    • getDns

      public Integer getDns()
      Returns:
      DNS resolution time. The time required to resolve a host name. DEFAULT_TIME if the timing does not apply to the current request.
    • setDns

      public void setDns​(Integer dns)
    • getConnect

      public Integer getConnect()
      Returns:
      Time required to create TCP connection. DEFAULT_TIME if the timing does not apply to the current request.
    • setConnect

      public void setConnect​(Integer connect)
    • getSend

      public Integer getSend()
      Returns:
      Time required to send HTTP request to the server, null if not present.
    • setSend

      public void setSend​(Integer send)
    • getWait

      public Integer getWait()
      Returns:
      Waiting for a response from the server, null if not present.
    • setWait

      public void setWait​(Integer wait)
    • getReceive

      public Integer getReceive()
      Returns:
      Time required to read entire response from the server (or cache), null if not present.
    • setReceive

      public void setReceive​(Integer receive)
    • getSsl

      public Integer getSsl()
      Returns:
      Time required for SSL/TLS negotiation. If this field is defined then the time is also included in the connect field (to ensure backward compatibility with HAR 1.1). DEFAULT_TIME if the timing does not apply to the current request.
    • setSsl

      public void setSsl​(Integer ssl)
    • getComment

      public String getComment()
      Returns:
      Comment provided by the user or application, null if not present.
    • setComment

      public void setComment​(String comment)
    • equals

      public boolean equals​(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object