aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/provision/Host.java
blob: 9d97308fc761ec2cfa8364582c15d309c33de402 (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
// 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 java.util.ArrayList;
import java.util.List;

/**
 * A hostname with zero or more aliases.
 *
 * @author musum
 */
public class Host {

    private final String hostname;
    private final List<String> hostAliases;

    public Host(String hostname) {
        this.hostname = hostname;
        this.hostAliases = new ArrayList<>();
    }

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

    public String getHostname() {
        return hostname;
    }

    public List<String> getHostAliases() {
        return hostAliases;
    }

    @Override
    public String toString() {
        return hostname + " (aliases: " + hostAliases + ")";
    }

}