com.ecwid.consul.v1.catalog.CatalogConsulClient 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;
import java.util.List;
import java.util.Map;
import com.ecwid.consul.SingleUrlParameters;
import com.ecwid.consul.UrlParameters;
import com.ecwid.consul.json.GsonFactory;
import com.ecwid.consul.transport.RawResponse;
import com.ecwid.consul.transport.TLSConfig;
import com.ecwid.consul.v1.ConsulRawClient;
import com.ecwid.consul.v1.OperationException;
import com.ecwid.consul.v1.QueryParams;
import com.ecwid.consul.v1.Response;
import com.ecwid.consul.v1.catalog.model.CatalogDeregistration;
import com.ecwid.consul.v1.catalog.model.CatalogNode;
import com.ecwid.consul.v1.catalog.model.CatalogRegistration;
import com.ecwid.consul.v1.catalog.model.Node;
import com.google.gson.reflect.TypeToken;
/**
* @author Vasily Vasilkov ([email protected])
*/
public final class CatalogConsulClient implements CatalogClient {
private final ConsulRawClient rawClient;
public CatalogConsulClient(ConsulRawClient rawClient) {
this.rawClient = rawClient;
}
public CatalogConsulClient() {
this(new ConsulRawClient());
}
public CatalogConsulClient(TLSConfig tlsConfig) {
this(new ConsulRawClient(tlsConfig));
}
public CatalogConsulClient(String agentHost) {
this(new ConsulRawClient(agentHost));
}
public CatalogConsulClient(String agentHost, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, tlsConfig));
}
public CatalogConsulClient(String agentHost, int agentPort) {
this(new ConsulRawClient(agentHost, agentPort));
}
public CatalogConsulClient(String agentHost, int agentPort, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, agentPort, tlsConfig));
}
@Override
public Response catalogRegister(CatalogRegistration catalogRegistration) {
String json = GsonFactory.getGson().toJson(catalogRegistration);
RawResponse rawResponse = rawClient.makePutRequest("/v1/catalog/register", json);
if (rawResponse.getStatusCode() == 200) {
return new Response(null, rawResponse);
} else {
throw new OperationException(rawResponse);
}
}
@Override
public Response catalogDeregister(CatalogDeregistration catalogDeregistration) {
String json = GsonFactory.getGson().toJson(catalogDeregistration);
RawResponse rawResponse = rawClient.makePutRequest("/v1/catalog/deregister", json);
if (rawResponse.getStatusCode() == 200) {
return new Response(null, rawResponse);
} else {
throw new OperationException(rawResponse);
}
}
@Override
public Response> getCatalogDatacenters() {
RawResponse rawResponse = rawClient.makeGetRequest("/v1/catalog/datacenters");
if (rawResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(rawResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, rawResponse);
} else {
throw new OperationException(rawResponse);
}
}
@Override
public Response> getCatalogNodes(QueryParams queryParams) {
RawResponse rawResponse = rawClient.makeGetRequest("/v1/catalog/nodes", queryParams);
if (rawResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(rawResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, rawResponse);
} else {
throw new OperationException(rawResponse);
}
}
@Override
public Response
© 2015 - 2025 Weber Informatics LLC | Privacy Policy