Class HostRegistry

java.lang.Object
com.yahoo.vespa.config.server.host.HostRegistry
All Implemented Interfaces:
HostValidator<com.yahoo.config.provision.ApplicationId>

public class HostRegistry extends Object implements HostValidator<com.yahoo.config.provision.ApplicationId>
A host registry with a mapping between hosts (hostname as a String) and some type T TODO: Maybe we should have a Host type, but using String for now.
Author:
Ulf Lilleengen
  • Constructor Details

    • HostRegistry

      public HostRegistry()
  • Method Details

    • getKeyForHost

      public com.yahoo.config.provision.ApplicationId getKeyForHost(String hostName)
    • update

      public void update(com.yahoo.config.provision.ApplicationId key, Collection<String> newHosts)
    • verifyHosts

      public void verifyHosts(com.yahoo.config.provision.ApplicationId key, Collection<String> newHosts)
      Specified by:
      verifyHosts in interface HostValidator<com.yahoo.config.provision.ApplicationId>
    • removeHostsForKey

      public void removeHostsForKey(com.yahoo.config.provision.ApplicationId key)
    • removeHostsForKey

      public void removeHostsForKey(com.yahoo.config.provision.TenantName key)
    • getAllHosts

      public Collection<String> getAllHosts()
    • getHostsForKey

      public Collection<String> getHostsForKey(com.yahoo.config.provision.ApplicationId key)