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

com.yahoo.config.provision.SharedHosts Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
package com.yahoo.config.provision;

/**
 * @author hakonhall
 */
public interface SharedHosts {

    /** Whether there are any shared hosts specifically for the given cluster type, or without a cluster type restriction. */
    boolean supportsClusterType(ClusterSpec.Type clusterType);

    /** Whether there are any shared hosts specifically for the given cluster type. */
    boolean hasClusterType(ClusterSpec.Type clusterType);

    static SharedHosts empty() {
        return new SharedHosts() {
            @Override public boolean supportsClusterType(ClusterSpec.Type clusterType) { return false; }
            @Override public boolean hasClusterType(ClusterSpec.Type clusterType) { return false; }
        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy