com.arangodb.shaded.vertx.ext.auth.PubSecKeyOptionsConverter 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.PubSecKeyOptions}.
* NOTE: This class has been automatically generated from the {@link com.arangodb.shaded.vertx.ext.auth.PubSecKeyOptions} original class using Vert.x codegen.
*/
public class PubSecKeyOptionsConverter {
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, PubSecKeyOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "algorithm":
if (member.getValue() instanceof String) {
obj.setAlgorithm((String)member.getValue());
}
break;
case "buffer":
if (member.getValue() instanceof String) {
obj.setBuffer(com.arangodb.shaded.vertx.core.buffer.Buffer.buffer(BASE64_DECODER.decode((String)member.getValue())));
}
break;
case "certificate":
if (member.getValue() instanceof Boolean) {
obj.setCertificate((Boolean)member.getValue());
}
break;
case "id":
if (member.getValue() instanceof String) {
obj.setId((String)member.getValue());
}
break;
case "publicKey":
if (member.getValue() instanceof String) {
obj.setPublicKey((String)member.getValue());
}
break;
case "secretKey":
if (member.getValue() instanceof String) {
obj.setSecretKey((String)member.getValue());
}
break;
case "symmetric":
if (member.getValue() instanceof Boolean) {
obj.setSymmetric((Boolean)member.getValue());
}
break;
}
}
}
public static void toJson(PubSecKeyOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(PubSecKeyOptions obj, java.util.Map json) {
if (obj.getAlgorithm() != null) {
json.put("algorithm", obj.getAlgorithm());
}
if (obj.getBuffer() != null) {
json.put("buffer", BASE64_ENCODER.encodeToString(obj.getBuffer().getBytes()));
}
json.put("certificate", obj.isCertificate());
if (obj.getId() != null) {
json.put("id", obj.getId());
}
if (obj.getPublicKey() != null) {
json.put("publicKey", obj.getPublicKey());
}
if (obj.getSecretKey() != null) {
json.put("secretKey", obj.getSecretKey());
}
json.put("symmetric", obj.isSymmetric());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy