Element serviceResourcesSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "ServiceResources");
if (serviceResourcesSequenceElement != null) {
for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(serviceResourcesSequenceElement, "http://schemas.microsoft.com/windowsazure", "ServiceResource").size(); i1 = i1 + 1) {
org.w3c.dom.Element serviceResourcesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(serviceResourcesSequenceElement, "http://schemas.microsoft.com/windowsazure", "ServiceResource").get(i1));
DatabaseCopy serviceResourceInstance = new DatabaseCopy();
result.getDatabaseCopies().add(serviceResourceInstance);
Element sourceServerNameElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "SourceServerName");
if (sourceServerNameElement != null) {
String sourceServerNameInstance;
sourceServerNameInstance = sourceServerNameElement.getTextContent();
serviceResourceInstance.setSourceServerName(sourceServerNameInstance);
}
Element sourceDatabaseNameElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "SourceDatabaseName");
if (sourceDatabaseNameElement != null) {
String sourceDatabaseNameInstance;
sourceDatabaseNameInstance = sourceDatabaseNameElement.getTextContent();
serviceResourceInstance.setSourceDatabaseName(sourceDatabaseNameInstance);
}
Element destinationServerNameElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "DestinationServerName");
if (destinationServerNameElement != null) {
String destinationServerNameInstance;
destinationServerNameInstance = destinationServerNameElement.getTextContent();
serviceResourceInstance.setDestinationServerName(destinationServerNameInstance);
}
Element destinationDatabaseNameElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "DestinationDatabaseName");
if (destinationDatabaseNameElement != null) {
String destinationDatabaseNameInstance;
destinationDatabaseNameInstance = destinationDatabaseNameElement.getTextContent();
serviceResourceInstance.setDestinationDatabaseName(destinationDatabaseNameInstance);
}
Element isContinuousElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "IsContinuous");
if (isContinuousElement != null) {
boolean isContinuousInstance;
isContinuousInstance = DatatypeConverter.parseBoolean(isContinuousElement.getTextContent().toLowerCase());
serviceResourceInstance.setIsContinuous(isContinuousInstance);
}
Element replicationStateElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "ReplicationState");
if (replicationStateElement != null) {
byte replicationStateInstance;
replicationStateInstance = DatatypeConverter.parseByte(replicationStateElement.getTextContent());
serviceResourceInstance.setReplicationState(replicationStateInstance);
}
Element replicationStateDescriptionElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "ReplicationStateDescription");
if (replicationStateDescriptionElement != null) {
String replicationStateDescriptionInstance;
replicationStateDescriptionInstance = replicationStateDescriptionElement.getTextContent();
serviceResourceInstance.setReplicationStateDescription(replicationStateDescriptionInstance);
}
Element localDatabaseIdElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "LocalDatabaseId");
if (localDatabaseIdElement != null) {
int localDatabaseIdInstance;
localDatabaseIdInstance = DatatypeConverter.parseInt(localDatabaseIdElement.getTextContent());
serviceResourceInstance.setLocalDatabaseId(localDatabaseIdInstance);
}
Element isLocalDatabaseReplicationTargetElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "IsLocalDatabaseReplicationTarget");
if (isLocalDatabaseReplicationTargetElement != null) {
boolean isLocalDatabaseReplicationTargetInstance;
isLocalDatabaseReplicationTargetInstance = DatatypeConverter.parseBoolean(isLocalDatabaseReplicationTargetElement.getTextContent().toLowerCase());
serviceResourceInstance.setIsLocalDatabaseReplicationTarget(isLocalDatabaseReplicationTargetInstance);
}
Element isInterlinkConnectedElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "IsInterlinkConnected");
if (isInterlinkConnectedElement != null) {
boolean isInterlinkConnectedInstance;
isInterlinkConnectedInstance = DatatypeConverter.parseBoolean(isInterlinkConnectedElement.getTextContent().toLowerCase());
serviceResourceInstance.setIsInterlinkConnected(isInterlinkConnectedInstance);
}
Element startDateElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "StartDate");
if (startDateElement != null) {
String startDateInstance;
startDateInstance = startDateElement.getTextContent();
serviceResourceInstance.setStartDate(startDateInstance);
}
Element modifyDateElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "ModifyDate");
if (modifyDateElement != null) {
String modifyDateInstance;
modifyDateInstance = modifyDateElement.getTextContent();
serviceResourceInstance.setModifyDate(modifyDateInstance);
}
Element percentCompleteElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "PercentComplete");
if (percentCompleteElement != null) {
float percentCompleteInstance;
percentCompleteInstance = DatatypeConverter.parseFloat(percentCompleteElement.getTextContent());
serviceResourceInstance.setPercentComplete(percentCompleteInstance);
}
Element nameElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "Name");
if (nameElement != null) {
String nameInstance;
nameInstance = nameElement.getTextContent();
serviceResourceInstance.setName(nameInstance);
}
Element typeElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "Type");
if (typeElement != null) {
String typeInstance;
typeInstance = typeElement.getTextContent();
serviceResourceInstance.setType(typeInstance);
}
Element stateElement = XmlUtility.getElementByTagNameNS(serviceResourcesElement, "http://schemas.microsoft.com/windowsazure", "State");
if (stateElement != null) {
String stateInstance;
stateInstance = stateElement.getTextContent();
serviceResourceInstance.setState(stateInstance);
}
}
}
result.setStatusCode(statusCode);