com.github.dockerjava.api.model.ContainerPort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import javax.annotation.CheckForNull;
import java.io.Serializable;
/**
* @author Kanstantsin Shautsou
* @see Container
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ContainerPort implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("IP")
private String ip;
@JsonProperty("PrivatePort")
private Integer privatePort;
@JsonProperty("PublicPort")
private Integer publicPort;
@JsonProperty("Type")
private String type;
/**
* @see #ip
*/
@CheckForNull
public String getIp() {
return ip;
}
/**
* @see #ip
*/
public ContainerPort withIp(String ip) {
this.ip = ip;
return this;
}
/**
* @see #privatePort
*/
@CheckForNull
public Integer getPrivatePort() {
return privatePort;
}
/**
* @see #privatePort
*/
public ContainerPort withPrivatePort(Integer privatePort) {
this.privatePort = privatePort;
return this;
}
/**
* @see #publicPort
*/
@CheckForNull
public Integer getPublicPort() {
return publicPort;
}
/**
* @see #publicPort
*/
public ContainerPort withPublicPort(Integer publicPort) {
this.publicPort = publicPort;
return this;
}
/**
* @see #type
*/
@CheckForNull
public String getType() {
return type;
}
/**
* @see #type
*/
public ContainerPort withType(String type) {
this.type = type;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@Override
public boolean equals(Object o) {
return EqualsBuilder.reflectionEquals(this, o);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy