io.vertx.ext.auth.jwt.JWTAuthOptionsConverter Maven / Gradle / Ivy
The newest version!
package io.vertx.ext.auth.jwt;
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.ext.auth.jwt.JWTAuthOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.auth.jwt.JWTAuthOptions} original class using Vert.x codegen.
*/
public class JWTAuthOptionsConverter {
static void fromJson(Iterable> json, JWTAuthOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "keyStore":
if (member.getValue() instanceof JsonObject) {
obj.setKeyStore(new io.vertx.ext.auth.KeyStoreOptions((io.vertx.core.json.JsonObject)member.getValue()));
}
break;
case "pubSecKeys":
if (member.getValue() instanceof JsonArray) {
java.util.ArrayList list = new java.util.ArrayList<>();
((Iterable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy