if(classesToBeInvalidated != null) {
// get identityMap of the parent ServerSession
IdentityMapAccessor accessor = this.getParentIdentityMapSession(null, false, true).getIdentityMapAccessor();
Iterator<Class> it = classesToBeInvalidated.iterator();
while(it.hasNext()) {
accessor.invalidateClass(it.next(), false);
}
classesToBeInvalidated = null;
}
flushClearCache = null;
super.mergeChangesIntoParent();