Class TrustTokenOperationDone
java.lang.Object
org.openqa.selenium.devtools.v141.network.model.TrustTokenOperationDone
Fired exactly once for each Trust Token operation. Depending on
the type of the operation and whether the operation succeeded or
failed, the event is fired before the corresponding request was sent
or after the response was received.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionTrustTokenOperationDone(TrustTokenOperationDone.Status status, TrustTokenOperationType type, RequestId requestId, Optional<String> topLevelOrigin, Optional<String> issuerOrigin, Optional<Integer> issuedTokenCount) -
Method Summary
Modifier and TypeMethodDescriptionThe number of obtained Trust Tokens on a successful "Issuance" operation.Origin of the issuer in case of a "Issuance" or "Redemption" operation.Detailed success or error status of the operation.Top level origin.getType()
-
Constructor Details
-
TrustTokenOperationDone
public TrustTokenOperationDone(TrustTokenOperationDone.Status status, TrustTokenOperationType type, RequestId requestId, Optional<String> topLevelOrigin, Optional<String> issuerOrigin, Optional<Integer> issuedTokenCount)
-
-
Method Details
-
getStatus
Detailed success or error status of the operation. 'AlreadyExists' also signifies a successful operation, as the result of the operation already exists und thus, the operation was abort preemptively (e.g. a cache hit). -
getType
-
getRequestId
-
getTopLevelOrigin
Top level origin. The context in which the operation was attempted. -
getIssuerOrigin
Origin of the issuer in case of a "Issuance" or "Redemption" operation. -
getIssuedTokenCount
The number of obtained Trust Tokens on a successful "Issuance" operation.
-