Class Endpoint
- java.lang.Object
-
- com.spotify.docker.client.messages.swarm.Endpoint
-
- Direct Known Subclasses:
AutoValue_Endpoint
public abstract class Endpoint extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Endpoint()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) static Endpoint
create(EndpointSpec spec, java.util.List<PortConfig> exposedPorts, java.util.List<PortConfig> ports, java.util.List<EndpointVirtualIp> virtualIps)
abstract com.google.common.collect.ImmutableList<PortConfig>
exposedPorts()
abstract com.google.common.collect.ImmutableList<PortConfig>
ports()
abstract EndpointSpec
spec()
abstract com.google.common.collect.ImmutableList<EndpointVirtualIp>
virtualIps()
-
-
-
Method Detail
-
spec
public abstract EndpointSpec spec()
-
exposedPorts
@Nullable public abstract com.google.common.collect.ImmutableList<PortConfig> exposedPorts()
-
ports
@Nullable public abstract com.google.common.collect.ImmutableList<PortConfig> ports()
-
virtualIps
@Nullable public abstract com.google.common.collect.ImmutableList<EndpointVirtualIp> virtualIps()
-
create
static Endpoint create(EndpointSpec spec, java.util.List<PortConfig> exposedPorts, java.util.List<PortConfig> ports, java.util.List<EndpointVirtualIp> virtualIps)
-
-