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

com.yahoo.vespa.model.admin.ModelConfigProvider Maven / Gradle / Ivy

// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.admin;

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

/**
 * A config provider for the model config. The ModelConfig is a common config and produced by {@link ApplicationConfigProducerRoot} , this config
 * producer exists to make the admin/model config id exist for legacy reasons.
 * @author hmusum
 * @author gjoranv
 * @since 5.0.8
 */
public class ModelConfigProvider extends TreeConfigProducer {

    public ModelConfigProvider(TreeConfigProducer parent) {
        super(parent, "model");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy