All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.api.command.RootFS Maven / Gradle / Ivy

package com.github.dockerjava.api.command;

import com.fasterxml.jackson.annotation.JsonProperty;
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 {

    @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 - 2024 Weber Informatics LLC | Privacy Policy