Skip to content

Instantly share code, notes, and snippets.

@amaltson
Created November 6, 2010 19:37
Show Gist options
  • Save amaltson/665651 to your computer and use it in GitHub Desktop.
Save amaltson/665651 to your computer and use it in GitHub Desktop.
Simple customer POJO
public class Customer implements Serializable {
private String id;
private String firstName, lastName;
private Address address;
private Email email;
// getters, setters, constructor.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment