public static String formatTldPKeyAttributes(String separator, CFInternetTldPKey pkey) {
   String retval =
       CFLibXmlUtil.formatRequiredInt64(null, "TenantId", pkey.getRequiredTenantId())
           + CFLibXmlUtil.formatRequiredInt64(separator, "TldId", pkey.getRequiredTldId());
   return (retval);
 }