io.vertx.ext.auth.shiro.ShiroAuthOptionsConverter Maven / Gradle / Ivy
package io.vertx.ext.auth.shiro;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
/**
* Converter for {@link io.vertx.ext.auth.shiro.ShiroAuthOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.auth.shiro.ShiroAuthOptions} original class using Vert.x codegen.
*/
public class ShiroAuthOptionsConverter {
public static void fromJson(Iterable> json, ShiroAuthOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "config":
if (member.getValue() instanceof JsonObject) {
obj.setConfig(((JsonObject)member.getValue()).copy());
}
break;
case "type":
if (member.getValue() instanceof String) {
obj.setType(io.vertx.ext.auth.shiro.ShiroAuthRealmType.valueOf((String)member.getValue()));
}
break;
}
}
}
public static void toJson(ShiroAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(ShiroAuthOptions obj, java.util.Map json) {
if (obj.getConfig() != null) {
json.put("config", obj.getConfig());
}
if (obj.getType() != null) {
json.put("type", obj.getType().name());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy