package io.vertx.servicediscovery.types;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
public class HttpLocationConverter {
public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HttpLocation obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "endpoint":
if (member.getValue() instanceof String) {
obj.setEndpoint((String)member.getValue());
}
break;
case "host":
if (member.getValue() instanceof String) {
obj.setHost((String)member.getValue());
}
break;
case "port":
if (member.getValue() instanceof Number) {
obj.setPort(((Number)member.getValue()).intValue());
}
break;
case "root":
if (member.getValue() instanceof String) {
obj.setRoot((String)member.getValue());
}
break;
case "ssl":
if (member.getValue() instanceof Boolean) {
obj.setSsl((Boolean)member.getValue());
}
break;
}
}
}
public static void toJson(HttpLocation obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(HttpLocation obj, java.util.Map<String, Object> json) {
if (obj.getEndpoint() != null) {
json.put("endpoint", obj.getEndpoint());
}
if (obj.getHost() != null) {
json.put("host", obj.getHost());
}
json.put("port", obj.getPort());
if (obj.getRoot() != null) {
json.put("root", obj.getRoot());
}
json.put("ssl", obj.isSsl());
}
}