-
Enhancement
-
Resolution: Done
-
Major
-
None
-
None
Make Externalizer interface generalized in order to make it more typesafe, i.e.:
interface Externalizer<T>
{ void writeObject(ObjectOutput output, T object) throws IOException; T readObject(ObjectInput input) throws IOException, ClassNotFoundException; }