aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/DataplaneToken.java
blob: 9b0367a465217d96629c8e5992e8ba411b3d8605 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.List;

/**
 * Id, fingerprints and check access hashes of a data plane token
 *
 * @author mortent
 */
public record DataplaneToken(String tokenId, List<Version> versions) {

    public record Version(String fingerprint, String checkAccessHash){
    }
}