webSpaceInstance.setPlan(planInstance);
}
Element statusElement = XmlUtility.getElementByTagNameNS(webSpacesElement, "http://schemas.microsoft.com/windowsazure", "Status");
if (statusElement != null) {
WebSpaceStatus statusInstance;
statusInstance = WebSpaceStatus.valueOf(statusElement.getTextContent());
webSpaceInstance.setStatus(statusInstance);
}
Element subscriptionElement = XmlUtility.getElementByTagNameNS(webSpacesElement, "http://schemas.microsoft.com/windowsazure", "Subscription");