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

com.ecwid.consul.v1.coordinate.model.Node Maven / Gradle / Ivy

There is a newer version: 2.0.0.0-RC3
Show newest version
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 +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy