public static String formatSubProjectRqstRead(String separator, long argTenantId, long argId) { String retval = "<RqstSubProjectRead " + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId) + CFLibXmlUtil.formatRequiredInt64(separator, "Id", argId) + " />"; return (retval); }
public static String formatSubProjectRqstDeleteByParentIdx( String separator, long argTenantId, long argParentProjectId) { String retval = "<RqstSubProjectDeleteByParentIdx " + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId) + CFLibXmlUtil.formatRequiredInt64(separator, "ParentProjectId", argParentProjectId) + " />"; return (retval); }
public static String formatSubProjectRqstReadByNameIdx( String separator, long argTenantId, long argParentProjectId, String argName) { String retval = "<RqstSubProjectReadByNameIdx " + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId) + CFLibXmlUtil.formatRequiredInt64(separator, "ParentProjectId", argParentProjectId) + CFLibXmlUtil.formatRequiredXmlString(separator, "Name", argName) + " />"; return (retval); }
public static String formatSubProjectBuffAttributes( String separator, CFInternetSubProjectBuff buff) { String retval = CFAccXMsgRealProjectMessageFormatter.formatRealProjectBuffAttributes(separator, buff) + CFLibXmlUtil.formatRequiredInt64( separator, "ParentProjectId", buff.getRequiredParentProjectId()) + CFLibXmlUtil.formatRequiredXmlString(separator, "Name", buff.getRequiredName()); return (retval); }