Say I have an interface and an object:
public interface MyInterface {
public String getStringOne();
}
public class MyObject implements MyInterface {
private final String stringOne = "string1";
private final Image myGiganticImage; // loads from disk in the constructor
// Getters for both would follow
}
What gets transferred if I upcast MyObject to MyInterface before sending it across the wire?
public class MyService {
private final MyObject data = new MyObject();
public MyInterface getData() {
return data;
}
}
Specifically, does myGiganticImage get sent across the wire?
ObjectOutputStream.writeObject(Object)you will see that all references are up cast to Object before serialisation. – Peter Lawrey Oct 23 '11 at 6:36