com.ecwid.consul.v1.catalog.model.WriteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consul-api Show documentation
Show all versions of consul-api Show documentation
Java client for Consul HTTP API (http://consul.io)
package com.ecwid.consul.v1.catalog.model;
import com.google.gson.annotations.SerializedName;
/**
* @author Vasily Vasilkov ([email protected])
*/
public class WriteRequest {
@SerializedName("Token")
private String token;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
@Override
public String toString() {
return "WriteRequest{" +
"token='" + token + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy