com.kpelykh.docker.client.model.Info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.kpelykh.docker.client.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.util.List;
/**
*
* @author Konstantin Pelykh ([email protected])
*
*/
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Info {
@JsonProperty("Debug")
private boolean debug;
@JsonProperty("Containers")
private int containers;
@JsonProperty("Driver")
private String driver;
@JsonProperty("DriverStatus")
private List