Class ContainerEndpoint
- java.lang.Object
-
- com.yahoo.vespa.hosted.controller.api.integration.configserver.ContainerEndpoint
-
public class ContainerEndpoint extends java.lang.ObjectThis represents a list of one or more names for a container cluster.- Author:
- mpolden
-
-
Constructor Summary
Constructors Constructor Description ContainerEndpoint(java.lang.String clusterId, java.util.List<java.lang.String> names)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringclusterId()ID of the cluster to which this pointsbooleanequals(java.lang.Object o)inthashCode()java.util.List<java.lang.String>names()All valid DNS names for this endpoint.java.lang.StringtoString()
-
-
-
Method Detail
-
clusterId
public java.lang.String clusterId()
ID of the cluster to which this points
-
names
public java.util.List<java.lang.String> names()
All valid DNS names for this endpoint. This can contain both proper DNS names and synthetic identifiers used for routing, such as a Host header value that is not necessarily a proper DNS name.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-