Skip to content

Instantly share code, notes, and snippets.

@galderz
Created May 3, 2011 08:56
Show Gist options
  • Save galderz/953035 to your computer and use it in GitHub Desktop.
Save galderz/953035 to your computer and use it in GitHub Desktop.
@Override
public Object createExternal(Class<?> subjectType, ObjectInput input, Creator defaultCreator) throws IOException, ClassNotFoundException {
CarJBoss o = new CarJBoss();
o.plateNumber = (String) input.readObject();
return o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment