public void getChange(
     Record row,
     Session session,
     Object object1,
     Object object2,
     ClassDescriptor desc,
     boolean useUOW,
     WriteType writeType) {
   for (Enumeration mappings = desc.getMappings().elements(); mappings.hasMoreElements(); ) {
     DatabaseMapping mapping = (DatabaseMapping) mappings.nextElement();
     if (!mapping.isReadOnly()) {
       getChange(row, mapping, session, object1, object2, useUOW, writeType);
     }
   }
 }