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

io.vertx.ext.web.handler.sockjs.SockJSBridgeOptionsConverter Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package io.vertx.ext.web.handler.sockjs;

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.ext.web.handler.sockjs.SockJSBridgeOptions}.
 * NOTE: This class has been automatically generated from the {@link io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions} original class using Vert.x codegen.
 */
public class SockJSBridgeOptionsConverter {


  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, SockJSBridgeOptions obj) {
    for (java.util.Map.Entry member : json) {
      switch (member.getKey()) {
        case "maxAddressLength":
          if (member.getValue() instanceof Number) {
            obj.setMaxAddressLength(((Number)member.getValue()).intValue());
          }
          break;
        case "maxHandlersPerSocket":
          if (member.getValue() instanceof Number) {
            obj.setMaxHandlersPerSocket(((Number)member.getValue()).intValue());
          }
          break;
        case "pingTimeout":
          if (member.getValue() instanceof Number) {
            obj.setPingTimeout(((Number)member.getValue()).longValue());
          }
          break;
        case "replyTimeout":
          if (member.getValue() instanceof Number) {
            obj.setReplyTimeout(((Number)member.getValue()).longValue());
          }
          break;
      }
    }
  }

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

   static void toJson(SockJSBridgeOptions obj, java.util.Map json) {
    json.put("maxAddressLength", obj.getMaxAddressLength());
    json.put("maxHandlersPerSocket", obj.getMaxHandlersPerSocket());
    json.put("pingTimeout", obj.getPingTimeout());
    json.put("replyTimeout", obj.getReplyTimeout());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy