Class CachedResource

java.lang.Object
io.webfolder.cdp.type.network.CachedResource

public class CachedResource extends Object
Information about the cached resource.
  • Constructor Details

    • CachedResource

      public CachedResource()
  • Method Details

    • getUrl

      public String getUrl()
      Resource URL. This is the url of the original network request.
    • setUrl

      public void setUrl(String url)
      Resource URL. This is the url of the original network request.
    • getType

      public ResourceType getType()
      Type of this resource.
    • setType

      public void setType(ResourceType type)
      Type of this resource.
    • getResponse

      public Response getResponse()
      Cached response data.
    • setResponse

      public void setResponse(Response response)
      Cached response data.
    • getBodySize

      public Double getBodySize()
      Cached response body size.
    • setBodySize

      public void setBodySize(Double bodySize)
      Cached response body size.
    • toString

      public String toString()
      Overrides:
      toString in class Object