/**
  * Creates a ServerDescriptor object based on some ADS properties provided.
  *
  * @param adsProperties the ADS properties of the server.
  * @return a ServerDescriptor object that corresponds to the provided ADS properties.
  */
 public static ServerDescriptor createStandalone(
     Map<ADSContext.ServerProperty, Object> adsProperties) {
   ServerDescriptor desc = new ServerDescriptor();
   desc.setAdsProperties(adsProperties);
   return desc;
 }