You need to make a wrapper class that implements Serialization for the external class.
That does not make the original class serializable, but you can send the wrapper instance over the wire instead.
class MyWrapper implements Serializable{
private transient TheClass wrapped;
MyWrapper(TheClass wrapped){
this.wrapped = wrapped;
}
private void writeObject(ObjectOutputStream stream) throws IOException {
stream.writeObject(wrapped.getA());
stream.writeObject(wrapped.getB());
}
private void readObject(ObjectInputStream stream) throws IOException,
ClassNotFoundException {
wrapped = new TheClass();
wrapped.setA(stream.readObject());
wrapped.setB(stream.readObject());
}
This depends on you being able to reconstruct the instance using its public setters, getters, and constructors.
If the original instance supports other forms of serialization (XML, ASN1, whatever), you can use that in your wrapper, too.