summaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/InstanceName.java
blob: e2733f3166382d952a6a497a67c2ecfe9ea6a97c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.Objects;

/**
 * Represents an applications instance name, which may be any kind of string or default. This type is defined
 * in order to provide a type safe API for defining environments.
 *
 * @author Ulf Lilleengen
 * @since 5.25
 */
public class InstanceName implements Comparable<InstanceName> {

    private final String instanceName;

    private InstanceName(String instanceName) {
        this.instanceName = instanceName;
    }

    @Override
    public int hashCode() {
        return instanceName.hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (!(obj instanceof InstanceName)) return false;
        return Objects.equals(((InstanceName) obj).instanceName, instanceName);
    }

    @Override
    public String toString() {
        return instanceName;
    }

    public static InstanceName from(String name) {
        return new InstanceName(name);
    }

    public static InstanceName defaultName() {
        return new InstanceName("default");
    }

    public boolean isDefault() {
        return equals(InstanceName.defaultName());
    }

    public boolean isTester() {
        return value().endsWith("-t");
    }

    public String value() { return instanceName; }

    @Override
    public int compareTo(InstanceName instance) {
        return instanceName.compareTo(instance.instanceName);
    }

}