* INTERNAL: Merge the changes to all objects to the parent.
*/
protected void mergeChangesIntoParent() {
if (this.classesToBeInvalidated != null) {
// get identityMap of the parent ServerSession
IdentityMapAccessor accessor = this.getParentIdentityMapSession(null, false, true).getIdentityMapAccessor();
Iterator<Class> iterator = this.classesToBeInvalidated.iterator();
while (iterator.hasNext()) {
accessor.invalidateClass(iterator.next(), false);
}
this.classesToBeInvalidated = null;
}
super.mergeChangesIntoParent();
}