aboutsummaryrefslogtreecommitdiffstats
path: root/processing/src/main/java/com/yahoo/processing/execution/chain/ChainRegistry.java
blob: e31b9a8b0989efcedba0f343c26d00bbeab52512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.processing.execution.chain;

import com.yahoo.component.chain.Chain;
import com.yahoo.component.chain.ChainedComponent;
import com.yahoo.component.provider.ComponentRegistry;

/**
 * A registry of chains
 *
 * @author tonytv
 * @since 5.1.7
 */
public class ChainRegistry<T extends ChainedComponent> extends ComponentRegistry<Chain<T>> {
}