public void readData(ObjectDataInput in) throws IOException {
map = in.readUTF();
update = in.readBoolean();
if (update) {
final MapConfigAdapter adapter = new MapConfigAdapter();
adapter.readData(in);
config = adapter.getMapConfig();
} else {
target = new Address();
target.readData(in);
}