aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/processing/ProcessingChains.java
blob: 0c2f5f7fcea674687eb87b47952e99350f09410d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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<ProcessingChain> {

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


    public ProcessingChains(TreeConfigProducer<? super Chains> parent, String subId) {
        super(parent, subId);
    }

}