io.yupiik.kubernetes.bindings.v1_22_9.v1.EndpointAddress Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 - Yupiik SAS - https://www.yupiik.com
* 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 io.yupiik.kubernetes.bindings.v1_22_9.v1;
import io.yupiik.kubernetes.bindings.v1_22_9.Exportable;
import io.yupiik.kubernetes.bindings.v1_22_9.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_22_9.Validable;
import io.yupiik.kubernetes.bindings.v1_22_9.ValidationException;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class EndpointAddress implements Validable, Exportable {
private String hostname;
private String ip;
private String nodeName;
private ObjectReference targetRef;
public EndpointAddress() {
// no-op
}
public EndpointAddress(final String hostname,
final String ip,
final String nodeName,
final ObjectReference targetRef) {
this.hostname = hostname;
this.ip = ip;
this.nodeName = nodeName;
this.targetRef = targetRef;
}
public String getHostname() {
return hostname;
}
public void setHostname(final String hostname) {
this.hostname = hostname;
}
public String getIp() {
return ip;
}
public void setIp(final String ip) {
this.ip = ip;
}
public String getNodeName() {
return nodeName;
}
public void setNodeName(final String nodeName) {
this.nodeName = nodeName;
}
public ObjectReference getTargetRef() {
return targetRef;
}
public void setTargetRef(final ObjectReference targetRef) {
this.targetRef = targetRef;
}
@Override
public int hashCode() {
return Objects.hash(
hostname,
ip,
nodeName,
targetRef);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof EndpointAddress)) {
return false;
}
final EndpointAddress __otherCasted = (EndpointAddress) __other;
return Objects.equals(hostname, __otherCasted.hostname) &&
Objects.equals(ip, __otherCasted.ip) &&
Objects.equals(nodeName, __otherCasted.nodeName) &&
Objects.equals(targetRef, __otherCasted.targetRef);
}
public EndpointAddress hostname(final String hostname) {
this.hostname = hostname;
return this;
}
public EndpointAddress ip(final String ip) {
this.ip = ip;
return this;
}
public EndpointAddress nodeName(final String nodeName) {
this.nodeName = nodeName;
return this;
}
public EndpointAddress targetRef(final ObjectReference targetRef) {
this.targetRef = targetRef;
return this;
}
@Override
public EndpointAddress validate() {
List __errors_jsonSchema = null;
if (ip == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"ip", "ip",
"Missing 'ip' attribute.", true));
}
if (__errors_jsonSchema != null) {
throw new ValidationException(__errors_jsonSchema);
}
return this;
}
@Override
public String asJson() {
return Stream.of(
(hostname != null ? "\"hostname\":\"" + JsonStrings.escapeJson(hostname) + "\"" : ""),
(ip != null ? "\"ip\":\"" + JsonStrings.escapeJson(ip) + "\"" : ""),
(nodeName != null ? "\"nodeName\":\"" + JsonStrings.escapeJson(nodeName) + "\"" : ""),
(targetRef != null ? "\"targetRef\":" + targetRef.asJson() : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}