Class ApplicationCache
- java.lang.Object
-
- org.openqa.selenium.devtools.v95.applicationcache.model.ApplicationCache
-
public class ApplicationCache extends java.lang.Object
Detailed application cache information.
-
-
Constructor Summary
Constructors Constructor Description ApplicationCache(java.lang.String manifestURL, java.lang.Number size, java.lang.Number creationTime, java.lang.Number updateTime, java.util.List<ApplicationCacheResource> resources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Number
getCreationTime()
Application cache creation time.java.lang.String
getManifestURL()
Manifest URL.java.util.List<ApplicationCacheResource>
getResources()
Application cache resources.java.lang.Number
getSize()
Application cache size.java.lang.Number
getUpdateTime()
Application cache update time.
-
-
-
Constructor Detail
-
ApplicationCache
public ApplicationCache(java.lang.String manifestURL, java.lang.Number size, java.lang.Number creationTime, java.lang.Number updateTime, java.util.List<ApplicationCacheResource> resources)
-
-
Method Detail
-
getManifestURL
public java.lang.String getManifestURL()
Manifest URL.
-
getSize
public java.lang.Number getSize()
Application cache size.
-
getCreationTime
public java.lang.Number getCreationTime()
Application cache creation time.
-
getUpdateTime
public java.lang.Number getUpdateTime()
Application cache update time.
-
getResources
public java.util.List<ApplicationCacheResource> getResources()
Application cache resources.
-
-