com.arangodb.shaded.vertx.ext.auth.KeyStoreOptionsConverter Maven / Gradle / Ivy
package com.arangodb.shaded.vertx.ext.auth;
import com.arangodb.shaded.vertx.core.json.JsonObject;
import com.arangodb.shaded.vertx.core.json.JsonArray;
import com.arangodb.shaded.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.util.Base64;
/**
* Converter and mapper for {@link com.arangodb.shaded.vertx.ext.auth.KeyStoreOptions}.
* NOTE: This class has been automatically generated from the {@link com.arangodb.shaded.vertx.ext.auth.KeyStoreOptions} original class using Vert.x codegen.
*/
public class KeyStoreOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;
public static void fromJson(Iterable> json, KeyStoreOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "password":
if (member.getValue() instanceof String) {
obj.setPassword((String)member.getValue());
}
break;
case "passwordProtection":
if (member.getValue() instanceof JsonObject) {
java.util.Map map = new java.util.LinkedHashMap<>();
((Iterable>)member.getValue()).forEach(entry -> {
if (entry.getValue() instanceof String)
map.put(entry.getKey(), (String)entry.getValue());
});
obj.setPasswordProtection(map);
}
break;
case "path":
if (member.getValue() instanceof String) {
obj.setPath((String)member.getValue());
}
break;
case "provider":
if (member.getValue() instanceof String) {
obj.setProvider((String)member.getValue());
}
break;
case "type":
if (member.getValue() instanceof String) {
obj.setType((String)member.getValue());
}
break;
case "value":
if (member.getValue() instanceof String) {
obj.setValue(com.arangodb.shaded.vertx.core.buffer.Buffer.buffer(BASE64_DECODER.decode((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 json) {
if (obj.getPassword() != null) {
json.put("password", obj.getPassword());
}
if (obj.getPasswordProtection() != null) {
JsonObject map = new JsonObject();
obj.getPasswordProtection().forEach((key, value) -> map.put(key, value));
json.put("passwordProtection", map);
}
if (obj.getPath() != null) {
json.put("path", obj.getPath());
}
if (obj.getProvider() != null) {
json.put("provider", obj.getProvider());
}
if (obj.getType() != null) {
json.put("type", obj.getType());
}
if (obj.getValue() != null) {
json.put("value", BASE64_ENCODER.encodeToString(obj.getValue().getBytes()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy