package io.vertx.ext.auth;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
public class KeyStoreOptionsConverter {
public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, KeyStoreOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "password":
if (member.getValue() instanceof String) {
obj.setPassword((String)member.getValue());
}
break;
case "path":
if (member.getValue() instanceof String) {
obj.setPath((String)member.getValue());
}
break;
case "type":
if (member.getValue() instanceof String) {
obj.setType((String)member.getValue());
}
break;
}
}
}
public static void toJson(KeyStoreOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(KeyStoreOptions obj, java.util.Map<String, Object> json) {
if (obj.getPassword() != null) {
json.put("password", obj.getPassword());
}
if (obj.getPath() != null) {
json.put("path", obj.getPath());
}
if (obj.getType() != null) {
json.put("type", obj.getType());
}
}
}