}
}
Element persistentVMDowntimeElement = XmlUtility.getElementByTagNameNS(deploymentsElement, "http://schemas.microsoft.com/windowsazure", "PersistentVMDowntime");
if (persistentVMDowntimeElement != null) {
PersistentVMDowntime persistentVMDowntimeInstance = new PersistentVMDowntime();
deploymentInstance.setPersistentVMDowntime(persistentVMDowntimeInstance);
Element startTimeElement = XmlUtility.getElementByTagNameNS(persistentVMDowntimeElement, "http://schemas.microsoft.com/windowsazure", "StartTime");
if (startTimeElement != null) {
Calendar startTimeInstance;
startTimeInstance = DatatypeConverter.parseDateTime(startTimeElement.getTextContent());
persistentVMDowntimeInstance.setStartTime(startTimeInstance);
}
Element endTimeElement = XmlUtility.getElementByTagNameNS(persistentVMDowntimeElement, "http://schemas.microsoft.com/windowsazure", "EndTime");
if (endTimeElement != null) {
Calendar endTimeInstance;
endTimeInstance = DatatypeConverter.parseDateTime(endTimeElement.getTextContent());
persistentVMDowntimeInstance.setEndTime(endTimeInstance);
}
Element statusElement6 = XmlUtility.getElementByTagNameNS(persistentVMDowntimeElement, "http://schemas.microsoft.com/windowsazure", "Status");
if (statusElement6 != null) {
String statusInstance6;
statusInstance6 = statusElement6.getTextContent();
persistentVMDowntimeInstance.setStatus(statusInstance6);
}
}
Element virtualIPsSequenceElement = XmlUtility.getElementByTagNameNS(deploymentsElement, "http://schemas.microsoft.com/windowsazure", "VirtualIPs");
if (virtualIPsSequenceElement != null) {