Klasse HarCookie

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

public class HarCookie extends Object
Information about a cookie used in request and/or response.
Siehe auch:
  • Konstruktordetails

    • HarCookie

      public HarCookie()
  • Methodendetails

    • getName

      public String getName()
      Gibt zurück:
      Name of the cookie, null if not present.
    • setName

      public void setName(String name)
    • getValue

      public String getValue()
      Gibt zurück:
      Value of the cookie, null if not present.
    • setValue

      public void setValue(String value)
    • getPath

      public String getPath()
      Gibt zurück:
      The cookie's path, null if not present.
    • setPath

      public void setPath(String path)
    • getDomain

      public String getDomain()
      Gibt zurück:
      The cookie's domain, null if not present.
    • setDomain

      public void setDomain(String domain)
    • getExpires

      public Date getExpires()
      Gibt zurück:
      The cookie's expiration time, null if not present.
    • setExpires

      public void setExpires(Date expires)
    • getHttpOnly

      public Boolean getHttpOnly()
      Gibt zurück:
      Whether the cookie is HTTP only, null if not present.
    • setHttpOnly

      public void setHttpOnly(Boolean httpOnly)
    • getSecure

      public Boolean getSecure()
      Gibt zurück:
      Whether the cookie was transmitted via SSL, null if not present.
    • setSecure

      public void setSecure(Boolean secure)
    • 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