Klasse HarTiming

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

public class HarTiming extends Object
  • Felddetails

    • DEFAULT_TIME

      protected static final Integer DEFAULT_TIME
  • Konstruktordetails

    • HarTiming

      public HarTiming()
  • Methodendetails

    • getBlocked

      public Integer getBlocked()
      Gibt zurück:
      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()
      Gibt zurück:
      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()
      Gibt zurück:
      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()
      Gibt zurück:
      Time required to send HTTP request to the server, null if not present.
    • setSend

      public void setSend(Integer send)
    • getWait

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

      public void setWait(Integer wait)
    • getReceive

      public Integer getReceive()
      Gibt zurück:
      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()
      Gibt zurück:
      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()
      Gibt zurück:
      Comment provided by the user or application, null if not present.
    • setComment

      public void setComment(String comment)
    • getAdditional

      public Map<String,Object> getAdditional()
      Gibt zurück:
      Map with additional keys, which are not officially supported by the HAR specification
    • setAdditionalField

      public void setAdditionalField(String key, Object value)
    • equals

      public boolean equals(Object o)
      Setzt außer Kraft:
      equals in Klasse Object
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object