
io.fabric8.docker.api.model.ContainerPathStat Maven / Gradle / Ivy
package io.fabric8.docker.api.model;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.docker.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"linkTarget",
"mode",
"mtime",
"name",
"size"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.docker.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
})
public class ContainerPathStat implements Serializable
{
/**
*
*
*/
@JsonProperty("linkTarget")
private String linkTarget;
/**
*
*
*/
@JsonProperty("mode")
private Integer mode;
/**
*
*
*/
@JsonProperty("mtime")
private String mtime;
/**
*
*
*/
@JsonProperty("name")
private String name;
/**
*
*
*/
@JsonProperty("size")
private Long size;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ContainerPathStat() {
}
/**
*
* @param mode
* @param size
* @param linkTarget
* @param name
* @param mtime
*/
public ContainerPathStat(String linkTarget, Integer mode, String mtime, String name, Long size) {
this.linkTarget = linkTarget;
this.mode = mode;
this.mtime = mtime;
this.name = name;
this.size = size;
}
/**
*
*
* @return
* The linkTarget
*/
@JsonProperty("linkTarget")
public String getLinkTarget() {
return linkTarget;
}
/**
*
*
* @param linkTarget
* The linkTarget
*/
@JsonProperty("linkTarget")
public void setLinkTarget(String linkTarget) {
this.linkTarget = linkTarget;
}
/**
*
*
* @return
* The mode
*/
@JsonProperty("mode")
public Integer getMode() {
return mode;
}
/**
*
*
* @param mode
* The mode
*/
@JsonProperty("mode")
public void setMode(Integer mode) {
this.mode = mode;
}
/**
*
*
* @return
* The mtime
*/
@JsonProperty("mtime")
public String getMtime() {
return mtime;
}
/**
*
*
* @param mtime
* The mtime
*/
@JsonProperty("mtime")
public void setMtime(String mtime) {
this.mtime = mtime;
}
/**
*
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
/**
*
*
* @return
* The size
*/
@JsonProperty("size")
public Long getSize() {
return size;
}
/**
*
*
* @param size
* The size
*/
@JsonProperty("size")
public void setSize(Long size) {
this.size = size;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy