public URL getURLBase() { String urlBase = UPnPImplUtils.getXmlParam(deviceElem, "URLBase"); if (urlBase != null) { try { return new URL(urlBase); } catch (Throwable e) { e.printStackTrace(); return null; } } else { return null; } }
public String getFriendlyName() { return UPnPImplUtils.getXmlParam(deviceElem, "friendlyName"); }
public String getDeviceType() { return UPnPImplUtils.getXmlParam(deviceElem, "deviceType"); }