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

com.yahoo.vespa.model.SimpleConfigProducer 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.producer.AnyConfigProducer;
import com.yahoo.config.model.producer.TreeConfigProducer;

/**
 * Some configuration level with no special handling of its own.
 *
 * @author arnej27959
 */
public final class SimpleConfigProducer extends TreeConfigProducer {

    private static final long serialVersionUID = 1L;

    /**
     * Creates a new instance
     *
     * @param parent   parent ConfigProducer.
     * @param configId name of this instance
     */
    public SimpleConfigProducer(TreeConfigProducer parent, String configId) {
        super(parent, configId);
    }

    //Ease access restriction
    @Override
    public void addChild(T child) {
        super.addChild(child);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy