private void postSaveOperations(final Map<Object, DBObject> involvedObjects) {
for (final Map.Entry<Object, DBObject> e : involvedObjects.entrySet()) {
final Object ent = e.getKey();
final DBObject dbO = e.getValue();
final MappedClass mc = mapper.getMappedClass(ent);
mc.callLifecycleMethods(PostPersist.class, ent, dbO, mapper);
}
}
@SuppressWarnings("rawtypes")
private <T> UpdateResults update(final Query<T> query, final UpdateOperations ops, final boolean createIfMissing,