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

com.yahoo.vespa.model.Client Maven / Gradle / Ivy

There is a newer version: 8.409.18
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.model;

import com.yahoo.config.model.ApplicationConfigProducerRoot;
import com.yahoo.config.model.producer.AnyConfigProducer;
import com.yahoo.config.model.producer.TreeConfigProducer;

/**
 * This is a placeholder config producer that makes global configuration available through a single identifier. This
 * is added directly to the {@link ApplicationConfigProducerRoot} producer, and so can be accessed by the simple "client" identifier.
 *
 * @author Simon Thoresen Hult
 */
public class Client extends TreeConfigProducer {

    /**
     * Constructs a client config producer that is added as a child to
     * the given config producer.
     *
     * @param parent The parent config producer.
     */
    public Client(TreeConfigProducer parent) {
        super(parent, "client");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy