All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.ext.auth.authentication.UsernamePasswordCredentialsConverter Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package com.arangodb.shaded.vertx.ext.auth.authentication;

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.authentication.UsernamePasswordCredentials}.
 * NOTE: This class has been automatically generated from the {@link com.arangodb.shaded.vertx.ext.auth.authentication.UsernamePasswordCredentials} original class using Vert.x codegen.
 */
public class UsernamePasswordCredentialsConverter {


  private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
  private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

   static void fromJson(Iterable> json, UsernamePasswordCredentials 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 "username":
          if (member.getValue() instanceof String) {
            obj.setUsername((String)member.getValue());
          }
          break;
      }
    }
  }

   static void toJson(UsernamePasswordCredentials obj, JsonObject json) {
    toJson(obj, json.getMap());
  }

   static void toJson(UsernamePasswordCredentials obj, java.util.Map json) {
    if (obj.getPassword() != null) {
      json.put("password", obj.getPassword());
    }
    if (obj.getUsername() != null) {
      json.put("username", obj.getUsername());
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy