com.github.dockerjava.api.model.BlkioStatEntry 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.JsonInclude;
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 org.apache.commons.lang.builder.ToStringStyle;
import java.io.Serializable;
/**
* BlkioStat is not documented in pubic docker swapper.yaml yet, reference:
* https://github.com/moby/moby/blob/master/api/types/stats.go
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BlkioStatEntry implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("major")
Long major;
@JsonProperty("minor")
Long minor;
@JsonProperty("op")
String op;
@JsonProperty("value")
Long value;
public Long getMajor() {
return major;
}
public BlkioStatEntry withMajor(Long major) {
this.major = major;
return this;
}
public Long getMinor() {
return minor;
}
public BlkioStatEntry withMinor(Long minor) {
this.minor = minor;
return this;
}
public String getOp() {
return op;
}
public BlkioStatEntry withOp(String op) {
this.op = op;
return this;
}
public Long getValue() {
return value;
}
public BlkioStatEntry withValue(Long value) {
this.value = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
@Override
public boolean equals(Object o) {
return EqualsBuilder.reflectionEquals(this, o);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}