aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-core/src/main/java/com/yahoo/vespaclient/ClusterDef.java
blob: 95bd9cf1cb5cdaaef421c51db9ef8b7ad7283d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespaclient;

public class ClusterDef {
    public ClusterDef(String name, String configId) {
        this.name = name;
        this.configId = configId;
    }

    String name;
    String configId;

    public String getName() { return name; }
    public String getConfigId() { return configId; }
}