Skip to content

Instantly share code, notes, and snippets.

@amaltson
Created October 31, 2010 16:55
Show Gist options
  • Save amaltson/656826 to your computer and use it in GitHub Desktop.
Save amaltson/656826 to your computer and use it in GitHub Desktop.
a simple pojo
public class Email implements Serializable {
private String email;
public Email() {
}
public Email(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment