private static VirtualNetworkAdapterType TryGetNetworkAdapterType()

in src/com/vmware/vim25/mox/VirtualMachineDeviceManager.java [721:732]


  private static VirtualNetworkAdapterType TryGetNetworkAdapterType(GuestOsDescriptor guestOsInfo) 
  {
    String ethernetCardType = guestOsInfo.getRecommendedEthernetCard();

    if ((ethernetCardType == null || ethernetCardType.isEmpty()) &&
        (guestOsInfo.getSupportedEthernetCard()!= null) &&
        ((guestOsInfo.getSupportedEthernetCard().length > 0))) 
    {
      ethernetCardType = guestOsInfo.getSupportedEthernetCard()[0];
    }
    return GetNetworkAdapterTypeByApiType(ethernetCardType);
  }