Uses of Class
com.github.dockerjava.api.model.ExposedPort

Packages that use ExposedPort
com.github.dockerjava.api.command   
com.github.dockerjava.api.model   
com.github.dockerjava.core.command   
 

Uses of ExposedPort in com.github.dockerjava.api.command
 

Methods in com.github.dockerjava.api.command that return ExposedPort
 ExposedPort[] CreateContainerCmd.getExposedPorts()
           
 

Methods in com.github.dockerjava.api.command with parameters of type ExposedPort
 CreateContainerCmd CreateContainerCmd.withExposedPorts(ExposedPort... exposedPorts)
           
 

Uses of ExposedPort in com.github.dockerjava.api.model
 

Methods in com.github.dockerjava.api.model that return ExposedPort
 ExposedPort ExposedPort.Deserializer.deserialize(com.fasterxml.jackson.core.JsonParser jsonParser, com.fasterxml.jackson.databind.DeserializationContext deserializationContext)
           
 ExposedPort PortBinding.getExposedPort()
           
 ExposedPort[] ExposedPorts.getExposedPorts()
           
 ExposedPort[] ContainerConfig.getExposedPorts()
           
static ExposedPort ExposedPort.parse(String serialized)
          Parses a textual port specification (as used by the Docker CLI) to an ExposedPort.
static ExposedPort ExposedPort.tcp(int port)
          Creates an ExposedPort for InternetProtocol.TCP.
static ExposedPort ExposedPort.udp(int port)
          Creates an ExposedPort for InternetProtocol.UDP.
 

Methods in com.github.dockerjava.api.model that return types with arguments of type ExposedPort
 Map<ExposedPort,Ports.Binding[]> Ports.getBindings()
          Returns the port bindings in the format used by the Docker remote API, i.e. the Ports.Bindings grouped by ExposedPort.
 

Methods in com.github.dockerjava.api.model with parameters of type ExposedPort
 void Ports.bind(ExposedPort exposedPort, Ports.Binding binding)
          Adds a new PortBinding for the specified ExposedPort and Ports.Binding to the current bindings.
 void ExposedPort.Serializer.serialize(ExposedPort exposedPort, com.fasterxml.jackson.core.JsonGenerator jsonGen, com.fasterxml.jackson.databind.SerializerProvider serProvider)
           
 

Constructors in com.github.dockerjava.api.model with parameters of type ExposedPort
ExposedPorts(ExposedPort... exposedPorts)
           
PortBinding(Ports.Binding binding, ExposedPort exposedPort)
           
Ports(ExposedPort exposedPort, Ports.Binding host)
          Creates a Ports object with an initial PortBinding for the specified ExposedPort and Ports.Binding.
 

Uses of ExposedPort in com.github.dockerjava.core.command
 

Methods in com.github.dockerjava.core.command that return ExposedPort
 ExposedPort[] CreateContainerCmdImpl.getExposedPorts()
           
 

Methods in com.github.dockerjava.core.command with parameters of type ExposedPort
 CreateContainerCmdImpl CreateContainerCmdImpl.withExposedPorts(ExposedPort... exposedPorts)
           
 



Copyright © 2014. All Rights Reserved.