com.github.dockerjava.api.model.VersionComponent Maven / Gradle / Ivy
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import javax.annotation.CheckForNull;
import java.io.Serializable;
import java.util.Map;
/**
* Part of {@link Version}
*
* @since {@link RemoteApiVersion#VERSION_1_35}
* @author Dmitry Tretyakov
*/
@EqualsAndHashCode
@ToString
public class VersionComponent extends DockerObject implements Serializable {
public static final long serialVersionUID = 1L;
@JsonProperty("Details")
private Map details;
@JsonProperty("Name")
private String name;
@JsonProperty("Version")
private String version;
/**
* @see #details
*/
@CheckForNull
public Map getDetails() {
return details;
}
/**
* @see #details
*/
public VersionComponent withDetails(Map details) {
this.details = details;
return this;
}
/**
* @see #name
*/
@CheckForNull
public String getName() {
return name;
}
/**
* @see #name
*/
public VersionComponent withName(String name) {
this.name = name;
return this;
}
/**
* @see #version
*/
@CheckForNull
public String getVersion() {
return version;
}
/**
* @see #version
*/
public VersionComponent withVersion(String version) {
this.version = version;
return this;
}
}