summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/processing/ProcessingChains.java
blob: 644316ff652d7302dbec71f564ba0078619fb16b (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 2017 Yahoo Holdings. 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.AbstractConfigProducer;
import com.yahoo.vespa.model.container.component.chain.Chains;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Root config producer for processing
 *
 * @author  bratseth
 * @since   5.1.6
 */
public class ProcessingChains extends Chains<ProcessingChain> {
    public static final String[] defaultBindings = new String[]
            {"http://*/processing/*", "https://*/processing/*"};


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