aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/Nodelike.java
blob: 245b66d9361d43d98283f9de31bcf8a08c7fe046 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision;

import com.yahoo.config.provision.NodeResources;
import com.yahoo.config.provision.NodeType;

import java.util.Optional;

/**
 * The API of anything that can behave essentially like a node.
 *
 * @author bratseth
 */
public interface Nodelike {

    NodeResources resources();

    /** Returns the hostname of the parent if this is a child node */
    Optional<String> parentHostname();

    NodeType type();

}