aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/ApplicationName.java
blob: f16c126dec29466241b73ab7e835fa162e71f643 (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
// Copyright Yahoo. 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 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 ApplicationName implements Comparable<ApplicationName> {

    private final String applicationName;

    private ApplicationName(String applicationName) {
        this.applicationName = applicationName;
    }

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

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

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

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

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

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

    public String value() {
        return applicationName;
    }

    @Override
    public int compareTo(ApplicationName name) {
        return this.applicationName.compareTo(name.applicationName);
    }

}