250251252253254255256257258
HostDescription result; try { Property prop = node.getProperty(XML_PROPERTY_NAME); result = HostDescription.fromXML(prop.getString()); } catch (Exception e) { throw new HostDescriptionRetrieveException(e); } return result; }
392393394395396397398399400401402
HostDescription hostDescriptor = getHostDescriptor(host); result.add(hostDescriptor); } } } catch (Exception e) { throw new HostDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }