gpt4 book ai didi

com.microsoft.windowsazure.core.utils.XmlUtility类的使用及代码示例

转载 作者:知者 更新时间:2024-03-27 10:17:05 25 4
gpt4 key购买 nike

本文整理了Java中com.microsoft.windowsazure.core.utils.XmlUtility类的一些代码示例,展示了XmlUtility类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlUtility类的具体详情如下:
包路径:com.microsoft.windowsazure.core.utils.XmlUtility
类名称:XmlUtility

XmlUtility介绍

暂无

代码示例

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt

Element locationsSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Locations");
if (locationsSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(locationsSequenceElement, "http://schemas.microsoft.com/windowsazure", "Location").size(); i1 = i1 + 1) {
    org.w3c.dom.Element locationsElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(locationsSequenceElement, "http://schemas.microsoft.com/windowsazure", "Location").get(i1));
    LocationsListResponse.Location locationInstance = new LocationsListResponse.Location();
    result.getLocations().add(locationInstance);
    Element nameElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element displayNameElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "DisplayName");
    if (displayNameElement != null) {
      String displayNameInstance;
    Element availableServicesSequenceElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "AvailableServices");
    if (availableServicesSequenceElement != null) {
      for (int i2 = 0; i2 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableServicesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableService").size(); i2 = i2 + 1) {
        org.w3c.dom.Element availableServicesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableServicesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableService").get(i2));
        locationInstance.getAvailableServices().add(availableServicesElement.getTextContent());
    Element storageCapabilitiesElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "StorageCapabilities");
    if (storageCapabilitiesElement != null) {
      StorageCapabilities storageCapabilitiesInstance = new StorageCapabilities();
      locationInstance.setStorageCapabilities(storageCapabilitiesInstance);
      Element storageAccountTypesSequenceElement = XmlUtility.getElementByTagNameNS(storageCapabilitiesElement, "http://schemas.microsoft.com/windowsazure", "StorageAccountTypes");
      if (storageAccountTypesSequenceElement != null) {
        storageCapabilitiesInstance.setStorageAccountTypes(new ArrayList<String>());

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-storage

Document responseDoc = documentBuilder2.parse(new BOMInputStream(responseContent));
Element storageServiceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "StorageService");
if (storageServiceElement != null) {
  Element urlElement = XmlUtility.getElementByTagNameNS(storageServiceElement, "http://schemas.microsoft.com/windowsazure", "Url");
  if (urlElement != null) {
    URI urlInstance;
  Element storageServiceKeysElement = XmlUtility.getElementByTagNameNS(storageServiceElement, "http://schemas.microsoft.com/windowsazure", "StorageServiceKeys");
  if (storageServiceKeysElement != null) {
    Element primaryElement = XmlUtility.getElementByTagNameNS(storageServiceKeysElement, "http://schemas.microsoft.com/windowsazure", "Primary");
    if (primaryElement != null) {
      String primaryInstance;
    Element secondaryElement = XmlUtility.getElementByTagNameNS(storageServiceKeysElement, "http://schemas.microsoft.com/windowsazure", "Secondary");
    if (secondaryElement != null) {
      String secondaryInstance;

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-network

Document responseDoc = documentBuilder2.parse(new BOMInputStream(responseContent));
Element gatewayOperationAsyncResponseElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "GatewayOperationAsyncResponse");
if (gatewayOperationAsyncResponseElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(gatewayOperationAsyncResponseElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt

Element affinityGroupsSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "AffinityGroups");
if (affinityGroupsSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(affinityGroupsSequenceElement, "http://schemas.microsoft.com/windowsazure", "AffinityGroup").size(); i1 = i1 + 1) {
    org.w3c.dom.Element affinityGroupsElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(affinityGroupsSequenceElement, "http://schemas.microsoft.com/windowsazure", "AffinityGroup").get(i1));
    AffinityGroupListResponse.AffinityGroup affinityGroupInstance = new AffinityGroupListResponse.AffinityGroup();
    result.getAffinityGroups().add(affinityGroupInstance);
    Element nameElement = XmlUtility.getElementByTagNameNS(affinityGroupsElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element labelElement = XmlUtility.getElementByTagNameNS(affinityGroupsElement, "http://schemas.microsoft.com/windowsazure", "Label");
    if (labelElement != null) {
      String labelInstance;
    Element descriptionElement = XmlUtility.getElementByTagNameNS(affinityGroupsElement, "http://schemas.microsoft.com/windowsazure", "Description");
    if (descriptionElement != null) {
      String descriptionInstance;
    Element locationElement = XmlUtility.getElementByTagNameNS(affinityGroupsElement, "http://schemas.microsoft.com/windowsazure", "Location");
    if (locationElement != null) {
      String locationInstance;
    Element capabilitiesSequenceElement = XmlUtility.getElementByTagNameNS(affinityGroupsElement, "http://schemas.microsoft.com/windowsazure", "Capabilities");
    if (capabilitiesSequenceElement != null) {
      for (int i2 = 0; i2 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(capabilitiesSequenceElement, "http://schemas.microsoft.com/windowsazure", "Capability").size(); i2 = i2 + 1) {
        org.w3c.dom.Element capabilitiesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(capabilitiesSequenceElement, "http://schemas.microsoft.com/windowsazure", "Capability").get(i2));
        affinityGroupInstance.getCapabilities().add(capabilitiesElement.getTextContent());

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-storage

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element storageServiceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "StorageService");
if (storageServiceElement != null) {
  Element urlElement = XmlUtility.getElementByTagNameNS(storageServiceElement, "http://schemas.microsoft.com/windowsazure", "Url");
  if (urlElement != null) {
    URI urlInstance;
  Element storageServiceKeysElement = XmlUtility.getElementByTagNameNS(storageServiceElement, "http://schemas.microsoft.com/windowsazure", "StorageServiceKeys");
  if (storageServiceKeysElement != null) {
    Element primaryElement = XmlUtility.getElementByTagNameNS(storageServiceKeysElement, "http://schemas.microsoft.com/windowsazure", "Primary");
    if (primaryElement != null) {
      String primaryInstance;
    Element secondaryElement = XmlUtility.getElementByTagNameNS(storageServiceKeysElement, "http://schemas.microsoft.com/windowsazure", "Secondary");
    if (secondaryElement != null) {
      String secondaryInstance;

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-network

Element effectiveRouteTableElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "EffectiveRouteTable");
if (effectiveRouteTableElement != null) {
  EffectiveRouteTable effectiveRouteTableInstance = new EffectiveRouteTable();
  result.setEffectiveRouteTable(effectiveRouteTableInstance);
  Element effectiveRouteListSequenceElement = XmlUtility.getElementByTagNameNS(effectiveRouteTableElement, "http://schemas.microsoft.com/windowsazure", "EffectiveRouteList");
  if (effectiveRouteListSequenceElement != null) {
    for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(effectiveRouteListSequenceElement, "http://schemas.microsoft.com/windowsazure", "EffectiveRoute").size(); i1 = i1 + 1) {
      org.w3c.dom.Element effectiveRouteListElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(effectiveRouteListSequenceElement, "http://schemas.microsoft.com/windowsazure", "EffectiveRoute").get(i1));
      EffectiveRoute effectiveRouteInstance = new EffectiveRoute();
      effectiveRouteTableInstance.getEffectiveRoutes().add(effectiveRouteInstance);
      Element nameElement = XmlUtility.getElementByTagNameNS(effectiveRouteListElement, "http://schemas.microsoft.com/windowsazure", "Name");
      if (nameElement != null) {
        String nameInstance;
      Element sourceElement = XmlUtility.getElementByTagNameNS(effectiveRouteListElement, "http://schemas.microsoft.com/windowsazure", "Source");
      if (sourceElement != null) {
        String sourceInstance;
      Element statusElement = XmlUtility.getElementByTagNameNS(effectiveRouteListElement, "http://schemas.microsoft.com/windowsazure", "Status");
      if (statusElement != null) {
        String statusInstance;
      Element addressPrefixesSequenceElement = XmlUtility.getElementByTagNameNS(effectiveRouteListElement, "http://schemas.microsoft.com/windowsazure", "AddressPrefixes");
      if (addressPrefixesSequenceElement != null) {
        for (int i2 = 0; i2 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(addressPrefixesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AddressPrefix").size(); i2 = i2 + 1) {
          org.w3c.dom.Element addressPrefixesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(addressPrefixesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AddressPrefix").get(i2));
          effectiveRouteInstance.getAddressPrefixes().add(addressPrefixesElement.getTextContent());

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-storage

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element operationElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Operation");
if (operationElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;
  Element statusElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Status");
  if (statusElement != null) {
    OperationStatus statusInstance;
  Element httpStatusCodeElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "HttpStatusCode");
  if (httpStatusCodeElement != null) {
    Integer httpStatusCodeInstance;
  Element errorElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Error");
  if (errorElement != null) {
    OperationStatusResponse.ErrorDetails errorInstance = new OperationStatusResponse.ErrorDetails();
    result.setError(errorInstance);
    Element codeElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Code");
    if (codeElement != null) {
      String codeInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element locationsSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Locations");
if (locationsSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(locationsSequenceElement, "http://schemas.microsoft.com/windowsazure", "Location").size(); i1 = i1 + 1) {
    org.w3c.dom.Element locationsElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(locationsSequenceElement, "http://schemas.microsoft.com/windowsazure", "Location").get(i1));
    LocationsListResponse.Location locationInstance = new LocationsListResponse.Location();
    result.getLocations().add(locationInstance);
    Element nameElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element displayNameElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "DisplayName");
    if (displayNameElement != null) {
      String displayNameInstance;
    Element availableServicesSequenceElement = XmlUtility.getElementByTagNameNS(locationsElement, "http://schemas.microsoft.com/windowsazure", "AvailableServices");
    if (availableServicesSequenceElement != null) {
      for (int i2 = 0; i2 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableServicesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableService").size(); i2 = i2 + 1) {
        org.w3c.dom.Element availableServicesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableServicesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableService").get(i2));
        locationInstance.getAvailableServices().add(availableServicesElement.getTextContent());

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-compute

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element dataVirtualHardDiskElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "DataVirtualHardDisk");
if (dataVirtualHardDiskElement != null) {
  Element hostCachingElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "HostCaching");
  if (hostCachingElement != null) {
    VirtualHardDiskHostCaching hostCachingInstance;
  Element diskLabelElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "DiskLabel");
  if (diskLabelElement != null) {
    String diskLabelInstance;
  Element diskNameElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "DiskName");
  if (diskNameElement != null) {
    String diskNameInstance;
  Element lunElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "Lun");
  if (lunElement != null && (lunElement.getTextContent() == null || lunElement.getTextContent().isEmpty() == true) == false) {
    int lunInstance;
  Element logicalDiskSizeInGBElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "LogicalDiskSizeInGB");
  if (logicalDiskSizeInGBElement != null) {
    int logicalDiskSizeInGBInstance;
  Element mediaLinkElement = XmlUtility.getElementByTagNameNS(dataVirtualHardDiskElement, "http://schemas.microsoft.com/windowsazure", "MediaLink");
  if (mediaLinkElement != null) {
    URI mediaLinkInstance;

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-network

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element addressAvailabilityResponseElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "AddressAvailabilityResponse");
if (addressAvailabilityResponseElement != null) {
  Element isAvailableElement = XmlUtility.getElementByTagNameNS(addressAvailabilityResponseElement, "http://schemas.microsoft.com/windowsazure", "IsAvailable");
  if (isAvailableElement != null) {
    boolean isAvailableInstance;
  Element availableAddressesSequenceElement = XmlUtility.getElementByTagNameNS(addressAvailabilityResponseElement, "http://schemas.microsoft.com/windowsazure", "AvailableAddresses");
  if (availableAddressesSequenceElement != null) {
    for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableAddressesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableAddress").size(); i1 = i1 + 1) {
      org.w3c.dom.Element availableAddressesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(availableAddressesSequenceElement, "http://schemas.microsoft.com/windowsazure", "AvailableAddress").get(i1));
      result.getAvailableAddresses().add(InetAddress.getByName(availableAddressesElement.getTextContent()));

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-compute

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element operationElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Operation");
if (operationElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;
  Element statusElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Status");
  if (statusElement != null) {
    OperationStatus statusInstance;
  Element httpStatusCodeElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "HttpStatusCode");
  if (httpStatusCodeElement != null) {
    Integer httpStatusCodeInstance;
  Element errorElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Error");
  if (errorElement != null) {
    OperationStatusResponse.ErrorDetails errorInstance = new OperationStatusResponse.ErrorDetails();
    result.setError(errorInstance);
    Element codeElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Code");
    if (codeElement != null) {
      String codeInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-network

Element applicationGatewaysSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "ApplicationGateways");
if (applicationGatewaysSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(applicationGatewaysSequenceElement, "http://schemas.microsoft.com/windowsazure", "ApplicationGateway").size(); i1 = i1 + 1) {
    org.w3c.dom.Element applicationGatewaysElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(applicationGatewaysSequenceElement, "http://schemas.microsoft.com/windowsazure", "ApplicationGateway").get(i1));
    ApplicationGatewayGetResponse applicationGatewayInstance = new ApplicationGatewayGetResponse();
    result.getApplicationGateways().add(applicationGatewayInstance);
    Element descriptionElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "Description");
    if (descriptionElement != null) {
      String descriptionInstance;
    Element dnsNameElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "DnsName");
    if (dnsNameElement != null) {
      String dnsNameInstance;
    Element gatewaySizeElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "GatewaySize");
    if (gatewaySizeElement != null) {
      String gatewaySizeInstance;
    Element instanceCountElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "InstanceCount");
    if (instanceCountElement != null) {
      long instanceCountInstance;
    Element nameElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element stateElement = XmlUtility.getElementByTagNameNS(applicationGatewaysElement, "http://schemas.microsoft.com/windowsazure", "State");
    if (stateElement != null) {

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-compute

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element operationElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Operation");
if (operationElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;
  Element statusElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Status");
  if (statusElement != null && statusElement.getTextContent() != null && !statusElement.getTextContent().isEmpty()) {
    OperationStatus statusInstance;
  Element httpStatusCodeElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "HttpStatusCode");
  if (httpStatusCodeElement != null && httpStatusCodeElement.getTextContent() != null && !httpStatusCodeElement.getTextContent().isEmpty()) {
    Integer httpStatusCodeInstance;
  Element errorElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Error");
  if (errorElement != null) {
    OperationStatusResponse.ErrorDetails errorInstance = new OperationStatusResponse.ErrorDetails();
    result.setError(errorInstance);
    Element codeElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Code");
    if (codeElement != null) {
      String codeInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-compute

Element hostedServiceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "HostedService");
if (hostedServiceElement != null) {
  Element urlElement = XmlUtility.getElementByTagNameNS(hostedServiceElement, "http://schemas.microsoft.com/windowsazure", "Url");
  if (urlElement != null) {
    URI urlInstance;
  Element serviceNameElement = XmlUtility.getElementByTagNameNS(hostedServiceElement, "http://schemas.microsoft.com/windowsazure", "ServiceName");
  if (serviceNameElement != null) {
    String serviceNameInstance;
  Element hostedServicePropertiesElement = XmlUtility.getElementByTagNameNS(hostedServiceElement, "http://schemas.microsoft.com/windowsazure", "HostedServiceProperties");
  if (hostedServicePropertiesElement != null) {
    HostedServiceProperties hostedServicePropertiesInstance = new HostedServiceProperties();
    result.setProperties(hostedServicePropertiesInstance);
    Element descriptionElement = XmlUtility.getElementByTagNameNS(hostedServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "Description");
    if (descriptionElement != null) {
      String descriptionInstance;
    Element affinityGroupElement = XmlUtility.getElementByTagNameNS(hostedServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "AffinityGroup");
    if (affinityGroupElement != null) {
      String affinityGroupInstance;
    Element locationElement = XmlUtility.getElementByTagNameNS(hostedServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "Location");
    if (locationElement != null) {
      String locationInstance;
    Element labelElement = XmlUtility.getElementByTagNameNS(hostedServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "Label");
    if (labelElement != null) {

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-network

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element operationElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Operation");
if (operationElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;
  Element statusElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Status");
  if (statusElement != null && statusElement.getTextContent() != null && !statusElement.getTextContent().isEmpty()) {
    OperationStatus statusInstance;
  Element httpStatusCodeElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "HttpStatusCode");
  if (httpStatusCodeElement != null && httpStatusCodeElement.getTextContent() != null && !httpStatusCodeElement.getTextContent().isEmpty()) {
    Integer httpStatusCodeInstance;
  Element errorElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Error");
  if (errorElement != null) {
    OperationStatusResponse.ErrorDetails errorInstance = new OperationStatusResponse.ErrorDetails();
    result.setError(errorInstance);
    Element codeElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Code");
    if (codeElement != null) {
      String codeInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-network

Element applicationGatewayElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "ApplicationGateway");
if (applicationGatewayElement != null) {
  Element descriptionElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "Description");
  if (descriptionElement != null) {
    String descriptionInstance;
  Element dnsNameElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "DnsName");
  if (dnsNameElement != null) {
    String dnsNameInstance;
  Element gatewaySizeElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "GatewaySize");
  if (gatewaySizeElement != null) {
    String gatewaySizeInstance;
  Element instanceCountElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "InstanceCount");
  if (instanceCountElement != null) {
    long instanceCountInstance;
  Element nameElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "Name");
  if (nameElement != null) {
    String nameInstance;
  Element stateElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "State");
  if (stateElement != null) {
    String stateInstance;
  Element subnetsSequenceElement = XmlUtility.getElementByTagNameNS(applicationGatewayElement, "http://schemas.microsoft.com/windowsazure", "Subnets");
  if (subnetsSequenceElement != null) {
    for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(subnetsSequenceElement, "http://schemas.microsoft.com/windowsazure", "Subnet").size(); i1 = i1 + 1) {

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt

Document responseDoc = documentBuilder.parse(new BOMInputStream(responseContent));
Element operationElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Operation");
if (operationElement != null) {
  Element idElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "ID");
  if (idElement != null) {
    String idInstance;
  Element statusElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Status");
  if (statusElement != null && statusElement.getTextContent() != null && !statusElement.getTextContent().isEmpty()) {
    OperationStatus statusInstance;
  Element httpStatusCodeElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "HttpStatusCode");
  if (httpStatusCodeElement != null && httpStatusCodeElement.getTextContent() != null && !httpStatusCodeElement.getTextContent().isEmpty()) {
    Integer httpStatusCodeInstance;
  Element errorElement = XmlUtility.getElementByTagNameNS(operationElement, "http://schemas.microsoft.com/windowsazure", "Error");
  if (errorElement != null) {
    OperationStatusResponse.ErrorDetails errorInstance = new OperationStatusResponse.ErrorDetails();
    result.setError(errorInstance);
    Element codeElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Code");
    if (codeElement != null) {
      String codeInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(errorElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;

代码示例来源:origin: com.microsoft.azure/azure-svc-mgmt-network

Element routeTablesSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "RouteTables");
if (routeTablesSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(routeTablesSequenceElement, "http://schemas.microsoft.com/windowsazure", "RouteTable").size(); i1 = i1 + 1) {
    org.w3c.dom.Element routeTablesElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(routeTablesSequenceElement, "http://schemas.microsoft.com/windowsazure", "RouteTable").get(i1));
    RouteTable routeTableInstance = new RouteTable();
    result.getRouteTables().add(routeTableInstance);
    Element nameElement = XmlUtility.getElementByTagNameNS(routeTablesElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element labelElement = XmlUtility.getElementByTagNameNS(routeTablesElement, "http://schemas.microsoft.com/windowsazure", "Label");
    if (labelElement != null) {
      String labelInstance;
    Element locationElement = XmlUtility.getElementByTagNameNS(routeTablesElement, "http://schemas.microsoft.com/windowsazure", "Location");
    if (locationElement != null) {
      String locationInstance;
    Element routeTableStateElement = XmlUtility.getElementByTagNameNS(routeTablesElement, "http://schemas.microsoft.com/windowsazure", "RouteTableState");
    if (routeTableStateElement != null && routeTableStateElement.getTextContent() != null && !routeTableStateElement.getTextContent().isEmpty()) {
      RouteTableState routeTableStateInstance;
    Element routeListSequenceElement = XmlUtility.getElementByTagNameNS(routeTablesElement, "http://schemas.microsoft.com/windowsazure", "RouteList");
    if (routeListSequenceElement != null) {
      for (int i2 = 0; i2 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(routeListSequenceElement, "http://schemas.microsoft.com/windowsazure", "Route").size(); i2 = i2 + 1) {
        org.w3c.dom.Element routeListElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(routeListSequenceElement, "http://schemas.microsoft.com/windowsazure", "Route").get(i2));
        Route routeInstance = new Route();
        routeTableInstance.getRouteList().add(routeInstance);

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-network

Element gatewayElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "Gateway");
if (gatewayElement != null) {
  Element stateElement = XmlUtility.getElementByTagNameNS(gatewayElement, "http://schemas.microsoft.com/windowsazure", "State");
  if (stateElement != null) {
    String stateInstance;
  Element vIPAddressElement = XmlUtility.getElementByTagNameNS(gatewayElement, "http://schemas.microsoft.com/windowsazure", "VIPAddress");
  if (vIPAddressElement != null) {
    InetAddress vIPAddressInstance;
  Element lastEventElement = XmlUtility.getElementByTagNameNS(gatewayElement, "http://schemas.microsoft.com/windowsazure", "LastEvent");
  if (lastEventElement != null) {
    GatewayEvent lastEventInstance = new GatewayEvent();
    result.setLastEvent(lastEventInstance);
    Element timestampElement = XmlUtility.getElementByTagNameNS(lastEventElement, "http://schemas.microsoft.com/windowsazure", "Timestamp");
    if (timestampElement != null) {
      Calendar timestampInstance;
    Element idElement = XmlUtility.getElementByTagNameNS(lastEventElement, "http://schemas.microsoft.com/windowsazure", "Id");
    if (idElement != null) {
      String idInstance;
    Element messageElement = XmlUtility.getElementByTagNameNS(lastEventElement, "http://schemas.microsoft.com/windowsazure", "Message");
    if (messageElement != null) {
      String messageInstance;
    Element dataElement = XmlUtility.getElementByTagNameNS(lastEventElement, "http://schemas.microsoft.com/windowsazure", "Data");
    if (dataElement != null) {

代码示例来源:origin: com.microsoft.windowsazure/microsoft-azure-api-management-network

Element reservedIPsSequenceElement = XmlUtility.getElementByTagNameNS(responseDoc, "http://schemas.microsoft.com/windowsazure", "ReservedIPs");
if (reservedIPsSequenceElement != null) {
  for (int i1 = 0; i1 < com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(reservedIPsSequenceElement, "http://schemas.microsoft.com/windowsazure", "ReservedIP").size(); i1 = i1 + 1) {
    org.w3c.dom.Element reservedIPsElement = ((org.w3c.dom.Element) com.microsoft.windowsazure.core.utils.XmlUtility.getElementsByTagNameNS(reservedIPsSequenceElement, "http://schemas.microsoft.com/windowsazure", "ReservedIP").get(i1));
    NetworkReservedIPListResponse.ReservedIP reservedIPInstance = new NetworkReservedIPListResponse.ReservedIP();
    result.getReservedIPs().add(reservedIPInstance);
    Element nameElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "Name");
    if (nameElement != null) {
      String nameInstance;
    Element addressElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "Address");
    if (addressElement != null) {
      InetAddress addressInstance;
    Element idElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "Id");
    if (idElement != null) {
      String idInstance;
    Element labelElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "Label");
    if (labelElement != null) {
      String labelInstance;
    Element affinityGroupElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "AffinityGroup");
    if (affinityGroupElement != null) {
      String affinityGroupInstance;
    Element stateElement = XmlUtility.getElementByTagNameNS(reservedIPsElement, "http://schemas.microsoft.com/windowsazure", "State");
    if (stateElement != null) {

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com