NetworkListResponse.Gateway gatewayInstance = new NetworkListResponse.Gateway();
virtualNetworkSiteInstance.setGateway(gatewayInstance);
Element profileElement = XmlUtility.getElementByTagNameNS(gatewayElement, "http://schemas.microsoft.com/windowsazure", "Profile");
if (profileElement != null) {
GatewayProfile profileInstance;
profileInstance = GatewayProfile.valueOf(profileElement.getTextContent());
gatewayInstance.setProfile(profileInstance);
}
Element sitesSequenceElement = XmlUtility.getElementByTagNameNS(gatewayElement, "http://schemas.microsoft.com/windowsazure", "Sites");