Package io.webfolder.cdp.command
Interface ApplicationCache
-
public interface ApplicationCache
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenable()Enables application cache domain notifications.ApplicationCachegetApplicationCacheForFrame(String frameId)Returns relevant application cache data for the document in given frame.List<FrameWithManifest>getFramesWithManifests()Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.StringgetManifestForFrame(String frameId)Returns manifest URL for document in the given frame.
-
-
-
Method Detail
-
enable
void enable()
Enables application cache domain notifications.
-
getApplicationCacheForFrame
ApplicationCache getApplicationCacheForFrame(String frameId)
Returns relevant application cache data for the document in given frame.- Parameters:
frameId- Identifier of the frame containing document whose application cache is retrieved.- Returns:
- Relevant application cache data for the document in given frame.
-
getFramesWithManifests
List<FrameWithManifest> getFramesWithManifests()
Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.- Returns:
- Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.
-
-