Interface DeploymentContainerRegistry
public interface DeploymentContainerRegistry
The registry of deployment containers.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptiongetContainer(String name) Returns the container with the specified name.Returns the collection of known deployment containers sorted by name.default List<DeploymentContainer> Returns a list of known deployment containers sorted by name.getContainers(Set<String> names) Returns a list of the specified deployment containers sorted by name.
-
Method Details
-
getContainer
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
Returns the collection of known deployment containers sorted by name.- Returns:
- a collection of deployment containers.
-
getContainers
Returns a list of known deployment containers sorted by name.- Returns:
- a list of deployment containers.
-
getContainers
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.
-