public String getNetworkXML(String name) throws LibvirtException {
Network network = getLibVirtNetwork(name);
try {
return network.getXMLDesc(0);
} finally {
network.free();
}
}
public void updateNetwork(String name, String xml, boolean autostart) throws LibvirtException {
connection.networkDefineXML(xml);