com.ecwid.consul.v1.coordinate.model.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package com.ecwid.consul.v1.coordinate.model;
import com.google.gson.annotations.SerializedName;
/**
* @author Vasily Vasilkov ([email protected])
*/
public class Node {
@SerializedName("Node")
private String node;
@SerializedName("Coord")
private Coord coord;
public String getNode() {
return node;
}
public void setNode(String node) {
this.node = node;
}
public Coord getCoord() {
return coord;
}
public void setCoord(Coord coord) {
this.coord = coord;
}
@Override
public String toString() {
return "Node{" +
"node='" + node + '\'' +
", coord=" + coord +
'}';
}
}