updateObj.put("foreignid", 1l);
om.update("testtype", key, updateObj);
updateObj = Maps.newTreeMap();
updateObj.put("foreignid", 2l);
om.update("testtype", key, updateObj);
UUID key2 = (UUID)om.insert("testtype", testObject2);
updateObj = Maps.newTreeMap();
updateObj.put("foreignid", 4l);
om.update("testtype", key2, updateObj);