All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.devtools.v90.network.model.TrustTokenParams Maven / Gradle / Ivy

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

There is a newer version: 4.0.0-beta-4
Show newest version
package org.openqa.selenium.devtools.v90.network.model;

import org.openqa.selenium.Beta;
import org.openqa.selenium.json.JsonInput;

/**
 * Determines what type of Trust Token operation is executed and
 * depending on the type, some additional parameters. The values
 * are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
 */
@org.openqa.selenium.Beta()
public class TrustTokenParams {

    public enum RefreshPolicy {

        USECACHED("UseCached"), REFRESH("Refresh");

        private String value;

        RefreshPolicy(String value) {
            this.value = value;
        }

        public static RefreshPolicy fromString(String s) {
            return java.util.Arrays.stream(RefreshPolicy.values()).filter(rs -> rs.value.equalsIgnoreCase(s)).findFirst().orElseThrow(() -> new org.openqa.selenium.devtools.DevToolsException("Given value " + s + " is not found within RefreshPolicy "));
        }

        public String toString() {
            return value;
        }

        public String toJson() {
            return value;
        }

        private static RefreshPolicy fromJson(JsonInput input) {
            return fromString(input.nextString());
        }
    }

    private final org.openqa.selenium.devtools.v90.network.model.TrustTokenOperationType type;

    private final RefreshPolicy refreshPolicy;

    private final java.util.Optional> issuers;

    public TrustTokenParams(org.openqa.selenium.devtools.v90.network.model.TrustTokenOperationType type, RefreshPolicy refreshPolicy, java.util.Optional> issuers) {
        this.type = java.util.Objects.requireNonNull(type, "type is required");
        this.refreshPolicy = java.util.Objects.requireNonNull(refreshPolicy, "refreshPolicy is required");
        this.issuers = issuers;
    }

    public org.openqa.selenium.devtools.v90.network.model.TrustTokenOperationType getType() {
        return type;
    }

    /**
     * Only set for "token-redemption" type and determine whether
     * to request a fresh SRR or use a still valid cached SRR.
     */
    public RefreshPolicy getRefreshPolicy() {
        return refreshPolicy;
    }

    /**
     * Origins of issuers from whom to request tokens or redemption
     * records.
     */
    public java.util.Optional> getIssuers() {
        return issuers;
    }

    private static TrustTokenParams fromJson(JsonInput input) {
        org.openqa.selenium.devtools.v90.network.model.TrustTokenOperationType type = null;
        RefreshPolicy refreshPolicy = null;
        java.util.Optional> issuers = java.util.Optional.empty();
        input.beginObject();
        while (input.hasNext()) {
            switch(input.nextName()) {
                case "type":
                    type = input.read(org.openqa.selenium.devtools.v90.network.model.TrustTokenOperationType.class);
                    break;
                case "refreshPolicy":
                    refreshPolicy = RefreshPolicy.fromString(input.nextString());
                    break;
                case "issuers":
                    issuers = java.util.Optional.ofNullable(input.read(new com.google.common.reflect.TypeToken>() {
                    }.getType()));
                    break;
                default:
                    input.skipValue();
                    break;
            }
        }
        input.endObject();
        return new TrustTokenParams(type, refreshPolicy, issuers);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy