com.spotify.helios.serviceregistration.ServiceRegistration Maven / Gradle / Ivy
/*-
* -\-\-
* Helios Service Registration
* --
* Copyright (C) 2016 Spotify AB
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package com.spotify.helios.serviceregistration;
import static java.util.Collections.unmodifiableList;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/**
* A list of endpoints to for service registration.
*/
public class ServiceRegistration {
private final List endpoints;
public ServiceRegistration(List endpoints) {
this.endpoints = unmodifiableList(new ArrayList<>(endpoints));
}
public List getEndpoints() {
return endpoints;
}
public static Builder newBuilder() {
return new Builder();
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final ServiceRegistration that = (ServiceRegistration) obj;
return Objects.equals(endpoints, that.endpoints);
}
@Override
public int hashCode() {
return Objects.hash(endpoints);
}
@Override
public String toString() {
return "ServiceRegistration{"
+ "endpoints=" + endpoints
+ '}';
}
public static class Builder {
private List endpoints = new ArrayList<>();
@Deprecated
public Builder endpoint(final String name,
final String protocol,
final int port) {
endpoints.add(new Endpoint(name, protocol, port, "", "", null, null));
return this;
}
public Builder endpoint(final String name,
final String protocol,
final int port,
final String domain,
final String host) {
endpoints.add(new Endpoint(name, protocol, port, domain, host, null, null));
return this;
}
public Builder endpoint(final String name,
final String protocol,
final int port,
final String domain,
final String host,
final List tags) {
endpoints.add(new Endpoint(name, protocol, port, domain, host, tags, null));
return this;
}
public Builder endpoint(final String name,
final String protocol,
final int port,
final String domain,
final String host,
final List tags,
final EndpointHealthCheck healthCheck) {
endpoints.add(new Endpoint(name, protocol, port, domain, host, tags, healthCheck));
return this;
}
public ServiceRegistration build() {
return new ServiceRegistration(endpoints);
}
}
/**
* A single service endpoint.
*/
public static class Endpoint {
private final String name;
private final String protocol;
private final int port;
private final String domain;
// The hostname on which we will advertise this service in service discovery.
private final String host;
private final List tags;
private final EndpointHealthCheck healthCheck;
public Endpoint(final String name, final String protocol, final int port,
final String domain, final String host, final List tags,
final EndpointHealthCheck healthCheck) {
this.name = name;
this.protocol = protocol;
this.port = port;
this.domain = domain;
this.host = host;
this.tags = tags;
this.healthCheck = healthCheck;
}
public String getHost() {
return host;
}
public String getDomain() {
return domain;
}
public String getName() {
return name;
}
public String getProtocol() {
return protocol;
}
public int getPort() {
return port;
}
public List getTags() {
return tags;
}
public EndpointHealthCheck getHealthCheck() {
return healthCheck;
}
@Override
public String toString() {
return "Endpoint{"
+ "name='" + name + '\''
+ ", protocol='" + protocol + '\''
+ ", port=" + port
+ ", domain='" + domain + '\''
+ ", host='" + host + '\''
+ ", tags=" + tags
+ ", healthCheck=" + healthCheck
+ '}';
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final Endpoint endpoint = (Endpoint) obj;
return port == endpoint.port
&& Objects.equals(name, endpoint.name)
&& Objects.equals(protocol, endpoint.protocol)
&& Objects.equals(domain, endpoint.domain)
&& Objects.equals(host, endpoint.host)
&& Objects.equals(tags, endpoint.tags)
&& Objects.equals(healthCheck, endpoint.healthCheck);
}
@Override
public int hashCode() {
return Objects.hash(name, protocol, port, domain, host, tags, healthCheck);
}
}
public static class EndpointHealthCheck {
public static final String HTTP = "http";
public static final String TCP = "tcp";
private final String type;
private final String path;
public EndpointHealthCheck(final String type, final String path) {
this.type = type;
this.path = path;
}
public String getType() {
return type;
}
public String getPath() {
return path;
}
public static EndpointHealthCheck newHttpCheck(String path) {
return new EndpointHealthCheck(HTTP, path);
}
public static EndpointHealthCheck newTcpCheck() {
return new EndpointHealthCheck(TCP, null);
}
@Override
public String toString() {
return "EndpointHealthCheck{"
+ "type='" + type + '\''
+ ", path='" + path + '\''
+ '}';
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final EndpointHealthCheck that = (EndpointHealthCheck) obj;
return Objects.equals(type, that.type)
&& Objects.equals(path, that.path);
}
@Override
public int hashCode() {
return Objects.hash(type, path);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy