aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/ClusterParams.java
blob: 3dfa506a96701e83280a38f8322b77309de68cdc (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
26
27
28
29
30
31
32
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import com.yahoo.container.search.LegacyEmulationConfig;

/**
 * Helper class for carrying around cluster-related
 * config parameters to the FastSearcher class.
 *
 * @author arnej27959
 */
public class ClusterParams {

    public final String searcherName;
    public final LegacyEmulationConfig emulation;

    /**
     * For testcases only
     */
    public ClusterParams(String name) {
        this(name, new LegacyEmulationConfig(new LegacyEmulationConfig.Builder()));
    }

    /**
     * Make up full ClusterParams
     */
    public ClusterParams(String name, LegacyEmulationConfig cfg) {
        this.searcherName = name;
        this.emulation = cfg;
    }

}