All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.vespa.hosted.controller.api.integration.entity.NodeEntity Maven / Gradle / Ivy

There is a newer version: 8.253.3
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.entity;

import java.util.Objects;
import java.util.Optional;

/**
 * Information about a node from a {@link EntityService}.
 *
 * @author mpolden
 */
public class NodeEntity {

    private final String hostname;
    private final Optional model;
    private final Optional manufacturer;
    private final Optional switchHostname;

    public NodeEntity(String hostname, String model, String manufacturer, String switchHostname) {
        this.hostname = Objects.requireNonNull(hostname);
        this.model = nonBlank(model);
        this.manufacturer = nonBlank(manufacturer);
        this.switchHostname = nonBlank(switchHostname);
    }

    public String hostname() {
        return hostname;
    }

    /** The model name of this node */
    public Optional model() {
        return model;
    }

    /** The manufacturer of this node */
    public Optional manufacturer() {
        return manufacturer;
    }

    /** The hostname of network switch this node is connected to */
    public Optional switchHostname() {
        return switchHostname;
    }

    private static Optional nonBlank(String s) {
        return Optional.ofNullable(s).filter(v -> !v.isBlank());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy