com.github.dockerjava.api.command.RootFS Maven / Gradle / Ivy
package com.github.dockerjava.api.command;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.dockerjava.api.model.DockerObject;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import javax.annotation.CheckForNull;
import java.util.List;
/**
* Part of {@link InspectImageResponse}
*
* @author Dmitry Tretyakov
*/
@EqualsAndHashCode
@ToString
public class RootFS extends DockerObject {
@JsonProperty("Type")
private String type;
@JsonProperty("Layers")
private List layers;
/**
* @see #type
*/
@CheckForNull
public String getType() {
return type;
}
/**
* @see #type
*/
public RootFS withType(String type) {
this.type = type;
return this;
}
/**
* @see #layers
*/
@CheckForNull
public List getLayers() {
return layers;
}
/**
* @see #layers
*/
public RootFS withLayers(List layers) {
this.layers = layers;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy