Object serialization
When java serializes a class without a SUID it must generate one on the fly, my question is if you are serializing a hash table full of objects and they are all the same object type, does java generate one SUID for that object type and use that SUID all the objects or does it generate a SUID for each object in the hashmap even though they are the same class?

