deploymentInstance.setPrivateId(privateIDInstance);
}
Element statusElement = XmlUtility.getElementByTagNameNS(deploymentsElement, "http://schemas.microsoft.com/windowsazure", "Status");
if (statusElement != null) {
DeploymentStatus statusInstance;
statusInstance = DeploymentStatus.valueOf(statusElement.getTextContent());
deploymentInstance.setStatus(statusInstance);
}
Element labelElement = XmlUtility.getElementByTagNameNS(deploymentsElement, "http://schemas.microsoft.com/windowsazure", "Label");