public static void exportRMS(
     FormInstance parent,
     Class type,
     String grouperName,
     IStorageUtility storage,
     IRecordFilter filter) {
   FormInstance entities = RestoreUtils.exportRMS(storage, type, grouperName, filter);
   RestoreUtils.mergeDataModel(parent, entities, ".");
 }
  public static void templateChild(
      FormInstance dm, String prefixPath, TreeReference parent, Restorable r) {
    TreeReference childRef =
        (prefixPath == null ? parent : RestoreUtils.childRef(prefixPath, parent));
    childRef = childRef(r.getRestorableType(), childRef);

    templateData(r, dm, childRef);
  }