Skip to content

Instantly share code, notes, and snippets.

@sjthn
Created January 27, 2017 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjthn/17fba52814eb9925c937c80778c2dad7 to your computer and use it in GitHub Desktop.
Save sjthn/17fba52814eb9925c937c80778c2dad7 to your computer and use it in GitHub Desktop.
public class User implements Serializable {
private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment