package io.vertx.core.net;

import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;

Converter for JksOptions. NOTE: This class has been automatically generated from the JksOptions original class using Vert.x codegen.
/** * Converter for {@link io.vertx.core.net.JksOptions}. * NOTE: This class has been automatically generated from the {@link io.vertx.core.net.JksOptions} original class using Vert.x codegen. */
public class JksOptionsConverter { public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JksOptions 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 "value": if (member.getValue() instanceof String) { obj.setValue(io.vertx.core.buffer.Buffer.buffer(java.util.Base64.getDecoder().decode((String)member.getValue()))); } break; } } } public static void toJson(JksOptions obj, JsonObject json) { toJson(obj, json.getMap()); } public static void toJson(JksOptions 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.getValue() != null) { json.put("value", java.util.Base64.getEncoder().encodeToString(obj.getValue().getBytes())); } } }