public static String formatInt32DefRqstRead(String separator, long argTenantId, long argId) {
   String retval =
       "<RqstInt32DefRead "
           + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId)
           + CFLibXmlUtil.formatRequiredInt64(separator, "Id", argId)
           + " />";
   return (retval);
 }
 public static String formatInt32DefRqstDeleteByScopeIdx(
     String separator, long argTenantId, long argScopeId) {
   String retval =
       "<RqstInt32DefDeleteByScopeIdx "
           + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId)
           + CFLibXmlUtil.formatRequiredInt64(separator, "ScopeId", argScopeId)
           + " />";
   return (retval);
 }
 public static String formatInt32DefRqstReadByUNameIdx(
     String separator, long argTenantId, long argScopeId, String argName) {
   String retval =
       "<RqstInt32DefReadByUNameIdx "
           + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId)
           + CFLibXmlUtil.formatRequiredInt64(separator, "ScopeId", argScopeId)
           + CFLibXmlUtil.formatRequiredXmlString(separator, "Name", argName)
           + " />";
   return (retval);
 }
 public static String formatInt32DefRqstMoveDown(
     String separator, long TenantId, long Id, int revision) {
   String retval =
       "<RqstInt32DefMoveDown "
           + CFLibXmlUtil.formatRequiredInt64(separator, "TenantId", TenantId)
           + CFLibXmlUtil.formatRequiredInt64(separator, "Id", Id)
           + CFLibXmlUtil.formatRequiredInt32(separator, "Revision", revision)
           + " />";
   return (retval);
 }