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

io.vertx.mqtt.MqttServerOptionsConverter Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package io.vertx.mqtt;

import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.util.Base64;

/**
 * Converter and mapper for {@link io.vertx.mqtt.MqttServerOptions}.
 * NOTE: This class has been automatically generated from the {@link io.vertx.mqtt.MqttServerOptions} original class using Vert.x codegen.
 */
public class MqttServerOptionsConverter {


  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, MqttServerOptions obj) {
    for (java.util.Map.Entry member : json) {
      switch (member.getKey()) {
        case "autoClientId":
          if (member.getValue() instanceof Boolean) {
            obj.setAutoClientId((Boolean)member.getValue());
          }
          break;
        case "maxClientIdLength":
          if (member.getValue() instanceof Number) {
            obj.setMaxClientIdLength(((Number)member.getValue()).intValue());
          }
          break;
        case "maxMessageSize":
          if (member.getValue() instanceof Number) {
            obj.setMaxMessageSize(((Number)member.getValue()).intValue());
          }
          break;
        case "perFrameWebSocketCompressionSupported":
          if (member.getValue() instanceof Boolean) {
            obj.setPerFrameWebSocketCompressionSupported((Boolean)member.getValue());
          }
          break;
        case "perMessageWebSocketCompressionSupported":
          if (member.getValue() instanceof Boolean) {
            obj.setPerMessageWebSocketCompressionSupported((Boolean)member.getValue());
          }
          break;
        case "timeoutOnConnect":
          if (member.getValue() instanceof Number) {
            obj.setTimeoutOnConnect(((Number)member.getValue()).intValue());
          }
          break;
        case "useWebSocket":
          if (member.getValue() instanceof Boolean) {
            obj.setUseWebSocket((Boolean)member.getValue());
          }
          break;
        case "webSocketAllowServerNoContext":
          if (member.getValue() instanceof Boolean) {
            obj.setWebSocketAllowServerNoContext((Boolean)member.getValue());
          }
          break;
        case "webSocketCompressionLevel":
          if (member.getValue() instanceof Number) {
            obj.setWebSocketCompressionLevel(((Number)member.getValue()).intValue());
          }
          break;
        case "webSocketMaxFrameSize":
          if (member.getValue() instanceof Number) {
            obj.setWebSocketMaxFrameSize(((Number)member.getValue()).intValue());
          }
          break;
        case "webSocketPreferredClientNoContext":
          if (member.getValue() instanceof Boolean) {
            obj.setWebSocketPreferredClientNoContext((Boolean)member.getValue());
          }
          break;
      }
    }
  }

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

   static void toJson(MqttServerOptions obj, java.util.Map json) {
    json.put("autoClientId", obj.isAutoClientId());
    json.put("maxClientIdLength", obj.getMaxClientIdLength());
    json.put("maxMessageSize", obj.getMaxMessageSize());
    json.put("perFrameWebSocketCompressionSupported", obj.isPerFrameWebSocketCompressionSupported());
    json.put("perMessageWebSocketCompressionSupported", obj.isPerMessageWebSocketCompressionSupported());
    json.put("useWebSocket", obj.isUseWebSocket());
    json.put("webSocketAllowServerNoContext", obj.isWebSocketAllowServerNoContext());
    json.put("webSocketCompressionLevel", obj.getWebSocketCompressionLevel());
    json.put("webSocketMaxFrameSize", obj.getWebSocketMaxFrameSize());
    json.put("webSocketPreferredClientNoContext", obj.isWebSocketPreferredClientNoContext());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy