use of com.cloud.hypervisor.kvm.resource.LibvirtStoragePoolXmlParser in project cosmic by MissionCriticalCloud.
the class LibvirtStorageAdaptor method getStoragePoolDef.
public LibvirtStoragePoolDef getStoragePoolDef(final Connect conn, final StoragePool pool) throws LibvirtException {
final String poolDefXml = pool.getXMLDesc(0);
final LibvirtStoragePoolXmlParser parser = new LibvirtStoragePoolXmlParser();
return parser.parseStoragePoolXml(poolDefXml);
}
use of com.cloud.hypervisor.kvm.resource.LibvirtStoragePoolXmlParser in project cloudstack by apache.
the class LibvirtStorageAdaptor method getStoragePoolDef.
public LibvirtStoragePoolDef getStoragePoolDef(Connect conn, StoragePool pool) throws LibvirtException {
String poolDefXML = pool.getXMLDesc(0);
LibvirtStoragePoolXMLParser parser = new LibvirtStoragePoolXMLParser();
return parser.parseStoragePoolXML(poolDefXML);
}
Aggregations