aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/provision/Host.java
blob: 360853d0f79c61fbd3e8459d3ffdf742550b8c57 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.provision;

import com.google.common.collect.ImmutableList;

import java.util.ArrayList;
import java.util.List;

/**
 * A hostname with zero or more aliases. This is immutable.
 *
 * @author hmusum
 */
public class Host {

    private final String hostname;
    private final ImmutableList<String> aliases;

    public Host(String hostname) {
        this.hostname = hostname;
        this.aliases = ImmutableList.of();
    }

    public Host(String hostname, List<String> hostAliases) {
        this.hostname = hostname;
        this.aliases = ImmutableList.copyOf(hostAliases);
    }

    public String hostname() { return hostname; }

    /** Returns an immutable list of the aliases of this node, which may be empty but never null */
    public List<String> aliases() { return aliases; }

    @Override
    public String toString() {
        return hostname + (aliases.size() > 0 ? " (aliases: " + aliases + ")" : "" );
    }

}