}
}
Element powerStateElement = XmlUtility.getElementByTagNameNS(roleInstanceListElement, "http://schemas.microsoft.com/windowsazure", "PowerState");
if (powerStateElement != null) {
RoleInstancePowerState powerStateInstance;
powerStateInstance = RoleInstancePowerState.valueOf(powerStateElement.getTextContent());
roleInstanceInstance.setPowerState(powerStateInstance);
}
Element hostNameElement = XmlUtility.getElementByTagNameNS(roleInstanceListElement, "http://schemas.microsoft.com/windowsazure", "HostName");