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

com.yahoo.vespa.config.server.application.ActiveTokenFingerprints Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.application;

import com.yahoo.vespa.config.server.modelfactory.ModelResult;

import java.util.List;
import java.util.Map;

/**
 * @author jonmv
 */
public interface ActiveTokenFingerprints {

    /** Lists all active tokens and their fingerprints for each token-enabled container host in the application, that is currently up. */
    Map> get(ModelResult application);

    record Token(String id, List fingerprints) { }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy