aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-zone-api/src/main/java/ai/vespa/cloud/Cluster.java
blob: 6e064b09d7a2b1ef4ccaac52585da11c7f2e5926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package ai.vespa.cloud;

/**
 * The properties of a cluster of nodes.
 *
 * @author gjoranv
 */
public class Cluster {

    private final int size;

    public Cluster(int size) {
        this.size = size;
    }

    /** Returns the number of nodes in this cluster. */
    public int size() { return size; }

}