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

com.yahoo.vespa.hosted.provision.lb.LoadBalancerSpec Maven / Gradle / Ivy

There is a newer version: 8.465.15
Show newest version
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.lb;

import com.google.common.collect.ImmutableSortedSet;
import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.ClusterSpec;

import java.util.Objects;
import java.util.Set;

/**
 * A specification for a load balancer.
 *
 * @author mpolden
 */
public class LoadBalancerSpec {

    private final ApplicationId application;
    private final ClusterSpec.Id cluster;
    private final Set reals;

    public LoadBalancerSpec(ApplicationId application, ClusterSpec.Id cluster, Set reals) {
        this.application = Objects.requireNonNull(application);
        this.cluster = Objects.requireNonNull(cluster);
        this.reals = ImmutableSortedSet.copyOf(Objects.requireNonNull(reals));
    }

    /** Owner of the load balancer */
    public ApplicationId application() {
        return application;
    }

    /** The target cluster of this load balancer */
    public ClusterSpec.Id cluster() {
        return cluster;
    }

    /** Real servers to attach to this load balancer */
    public Set reals() {
        return reals;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy