Class SharedStorageAccessed
- java.lang.Object
-
- org.openqa.selenium.devtools.v109.storage.model.SharedStorageAccessed
-
public class SharedStorageAccessed extends java.lang.ObjectShared storage was accessed by the associated page. The following parameters are included in all events.
-
-
Constructor Summary
Constructors Constructor Description SharedStorageAccessed(TimeSinceEpoch accessTime, SharedStorageAccessType type, FrameId mainFrameId, java.lang.String ownerOrigin, SharedStorageAccessParams params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TimeSinceEpochgetAccessTime()Time of the access.FrameIdgetMainFrameId()DevTools Frame Token for the primary frame tree's root.java.lang.StringgetOwnerOrigin()Serialized origin for the context that invoked the Shared Storage API.SharedStorageAccessParamsgetParams()The sub-parameters warapped by `params` are all optional and their presence/absence depends on `type`.SharedStorageAccessTypegetType()Enum value indicating the Shared Storage API method invoked.
-
-
-
Constructor Detail
-
SharedStorageAccessed
public SharedStorageAccessed(TimeSinceEpoch accessTime, SharedStorageAccessType type, FrameId mainFrameId, java.lang.String ownerOrigin, SharedStorageAccessParams params)
-
-
Method Detail
-
getAccessTime
public TimeSinceEpoch getAccessTime()
Time of the access.
-
getType
public SharedStorageAccessType getType()
Enum value indicating the Shared Storage API method invoked.
-
getMainFrameId
public FrameId getMainFrameId()
DevTools Frame Token for the primary frame tree's root.
-
getOwnerOrigin
public java.lang.String getOwnerOrigin()
Serialized origin for the context that invoked the Shared Storage API.
-
getParams
public SharedStorageAccessParams getParams()
The sub-parameters warapped by `params` are all optional and their presence/absence depends on `type`.
-
-