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

com.yahoo.vespa.model.container.processing.ProcessingChains 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.processing;

import com.yahoo.config.model.producer.TreeConfigProducer;
import com.yahoo.vespa.model.container.component.BindingPattern;
import com.yahoo.vespa.model.container.component.SystemBindingPattern;
import com.yahoo.vespa.model.container.component.chain.Chains;

import java.util.List;

/**
 * Root config producer for processing
 *
 * @author  bratseth
 */
public class ProcessingChains extends Chains {

    public static final List defaultBindings = List.of(SystemBindingPattern.fromHttpPath("/processing/*"));


    public ProcessingChains(TreeConfigProducer parent, String subId) {
        super(parent, subId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy