Package io.webfolder.cdp.command
Interface ApplicationCache
-
public interface ApplicationCache
-
-
Method Summary
Modifier and Type Method Description void
enable()
Enables application cache domain notifications.ApplicationCache
getApplicationCacheForFrame(java.lang.String frameId)
Returns relevant application cache data for the document in given frame.java.util.List<FrameWithManifest>
getFramesWithManifests()
Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.java.lang.String
getManifestForFrame(java.lang.String frameId)
Returns manifest URL for document in the given frame.
-
-
-
Method Detail
-
enable
void enable()
Enables application cache domain notifications.
-
getApplicationCacheForFrame
ApplicationCache getApplicationCacheForFrame(java.lang.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
java.util.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.
-
getManifestForFrame
java.lang.String getManifestForFrame(java.lang.String frameId)
Returns manifest URL for document in the given frame.- Parameters:
frameId
- Identifier of the frame containing document whose manifest is retrieved.- Returns:
- Manifest URL for document in the given frame.
-
-