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

com.github.dockerjava.api.model.PidsStatsConfig Maven / Gradle / Ivy

package com.github.dockerjava.api.model;

import com.fasterxml.jackson.annotation.JsonProperty;

import javax.annotation.CheckForNull;
import java.io.Serializable;

/**
 * Used in {@link Statistics}
 *
 * @author Yuting Liu
 */
public class PidsStatsConfig implements Serializable {
    private static final long serialVersionUID = 1L;

    @JsonProperty("current")
    private Long current;

    /**
     * @see #current
     */
    @CheckForNull
    public Long getCurrent() {
        return current;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy