com.github.dockerjava.api.model.InfoRegistryConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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;
import java.util.List;
import java.util.Map;
/**
* @since ~{@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_20}
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public final class InfoRegistryConfig implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("IndexConfigs")
private Map indexConfigs;
@JsonProperty("InsecureRegistryCIDRs")
private List insecureRegistryCIDRs;
/**
* //FIXME unknown field
*/
@JsonProperty("Mirrors")
private Object mirrors;
/**
* @see #indexConfigs
*/
@CheckForNull
public Map getIndexConfigs() {
return indexConfigs;
}
/**
* @see #indexConfigs
*/
public InfoRegistryConfig withIndexConfigs(Map indexConfigs) {
this.indexConfigs = indexConfigs;
return this;
}
/**
* @see #insecureRegistryCIDRs
*/
@CheckForNull
public List getInsecureRegistryCIDRs() {
return insecureRegistryCIDRs;
}
/**
* @see #insecureRegistryCIDRs
*/
public InfoRegistryConfig withInsecureRegistryCIDRs(List insecureRegistryCIDRs) {
this.insecureRegistryCIDRs = insecureRegistryCIDRs;
return this;
}
/**
* @see #mirrors
*/
@CheckForNull
public Object getMirrors() {
return mirrors;
}
/**
* @see #mirrors
*/
public InfoRegistryConfig withMirrors(Object mirrors) {
this.mirrors = mirrors;
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);
}
/**
* @since ~{@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_20}
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public static final class IndexConfig {
@JsonProperty("Mirrors")
private List mirrors;
@JsonProperty("Name")
private String name;
@JsonProperty("Official")
private Boolean official;
@JsonProperty("Secure")
private Boolean secure;
/**
* @see #mirrors
*/
@CheckForNull
public List getMirrors() {
return mirrors;
}
/**
* @see #mirrors
*/
public IndexConfig withMirrors(List mirrors) {
this.mirrors = mirrors;
return this;
}
/**
* @see #name
*/
@CheckForNull
public String getName() {
return name;
}
/**
* @see #name
*/
public IndexConfig withName(String name) {
this.name = name;
return this;
}
/**
* @see #official
*/
@CheckForNull
public Boolean getOfficial() {
return official;
}
/**
* @see #official
*/
public IndexConfig withOfficial(Boolean official) {
this.official = official;
return this;
}
/**
* @see #secure
*/
@CheckForNull
public Boolean getSecure() {
return secure;
}
/**
* @see #secure
*/
public IndexConfig withSecure(Boolean secure) {
this.secure = secure;
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);
}
}
}