aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-core/src/main/java/com/yahoo/vespaclient/ClusterDef.java
blob: 3860941d0ec19ad0dffd5a4d6a30aba82c6d7d91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// 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) {
        this.name = name;
    }

    String name;

    public String getName() { return name; }
}