io.vertx.core.net.PemTrustOptionsConverter Maven / Gradle / Ivy
package io.vertx.core.net;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.util.Base64;
/**
* Converter and mapper for {@link io.vertx.core.net.PemTrustOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.core.net.PemTrustOptions} original class using Vert.x codegen.
*/
public class PemTrustOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;
static void fromJson(Iterable> json, PemTrustOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "certPaths":
if (member.getValue() instanceof JsonArray) {
((Iterable