com.yahoo.vespa.model.container.component.ComponentGroup 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.container.component;
import com.yahoo.config.model.producer.AnyConfigProducer;
import com.yahoo.config.model.producer.TreeConfigProducer;
/**
* @author Tony Vaagenes
*/
public class ComponentGroup > extends ConfigProducerGroup {
public ComponentGroup(TreeConfigProducer parent, String subId) {
super(parent, subId);
}
public void addComponent(CGCHILD producer) {
super.addComponent(producer.getComponentId(), producer);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy