serviceProperties.put("uri", CV_SERVLET_ALIAS);
return new ServiceDescription("_openhab-cv-server._tcp.local.", "openHAB-CV", httpPort, serviceProperties);
}
private ServiceDescription getSSLServiceDescription() {
ServiceDescription description = getDefaultServiceDescription();
description.serviceType = "_openhab-cv-server-ssl._tcp.local.";
description.serviceName = "openHAB-CV-ssl";
description.servicePort = httpSSLPort;
return description;
}