io.vertx.core.net.OpenSSLEngineOptionsConverter Maven / Gradle / Ivy
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 and mapper for {@link io.vertx.core.net.OpenSSLEngineOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.core.net.OpenSSLEngineOptions} original class using Vert.x codegen.
*/
public class OpenSSLEngineOptionsConverter {
static void fromJson(Iterable> json, OpenSSLEngineOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "useWorkerThread":
if (member.getValue() instanceof Boolean) {
obj.setUseWorkerThread((Boolean)member.getValue());
}
break;
case "sessionCacheEnabled":
if (member.getValue() instanceof Boolean) {
obj.setSessionCacheEnabled((Boolean)member.getValue());
}
break;
}
}
}
static void toJson(OpenSSLEngineOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
static void toJson(OpenSSLEngineOptions obj, java.util.Map json) {
json.put("useWorkerThread", obj.getUseWorkerThread());
json.put("sessionCacheEnabled", obj.isSessionCacheEnabled());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy