Java / Java Serialization
How do I serialize a third party library class in Java?
If the third party class is not final you could just extend it, have that implement Serializable and write your own writeObject and readObject methods.
More Related questions...