Interface DeploymentContainerRegistry


public interface DeploymentContainerRegistry
The registry of deployment containers.
Author:
Paul Ferraro
  • Method Details

    • getContainer

      DeploymentContainer getContainer(String name)
      Returns the container with the specified name.
      Parameters:
      name - a container name
      Returns:
      the container with the specified name, or null, if no such container exists.
    • getContainerNames

      Set<String> getContainerNames()
      Returns the collection of known deployment containers sorted by name.
      Returns:
      a collection of deployment containers.
    • getContainers

      default List<DeploymentContainer> getContainers()
      Returns a list of known deployment containers sorted by name.
      Returns:
      a list of deployment containers.
    • getContainers

      List<DeploymentContainer> getContainers(Set<String> names)
      Returns a list of the specified deployment containers sorted by name.
      Parameters:
      names - a set of deployment container names
      Returns:
      a list of deployment containers.