summaryrefslogtreecommitdiffstats
path: root/vespaclient-core/src/main/java/com/yahoo/vespaclient/ClusterDef.java
blob: ced90ce4aebb7d2486bab779a253811a5c6e14db (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.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; }
}