6162636465666768697071
String host = getString(r, "host", "localhost"); Integer port = getInt(r, "port", null); Boolean secure = getBoolean(r, "secure", null); c.on(path).withHost(host); if (port != null) { c.withPort(port); } if (secure != null) { c.secure(secure); }
String host = getString(r, "host", "localhost"); Integer port = getInteger(r, "port", null); Boolean secure = getBoolean(r, "secure", null); c.on(path).withHost(host); if (port != null) { c.withPort(port); } if (secure != null) { c.secure(secure); }