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

public class ClusterDef {
    private final String name;
    public ClusterDef(String name) { this.name = name; }
    public String getName() { return name; }
    public String getRoute() { return "[Content:cluster=" + name + "]"; }
}