com.fitbur.github.dockerjava.api.model.Node Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.model;
import com.fitbur.fasterxml.jackson.annotation.JsonProperty;
/**
* A node as returned by the /events API, for instance, when Swarm is used.
*/
public class Node {
@JsonProperty("Name")
private String name;
@JsonProperty("Id")
private String id;
@JsonProperty("Addr")
private String addr;
@JsonProperty("Ip")
private String ip;
public String getName() {
return name;
}
public String getId() {
return id;
}
public String getAddr() {
return addr;
}
public String getIp() {
return ip;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy