Skip to content

Instantly share code, notes, and snippets.

@yostane
Created January 24, 2021 22:45
Show Gist options
  • Select an option

  • Save yostane/40f167418edbd26452da390cbfff3289 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/40f167418edbd26452da390cbfff3289 to your computer and use it in GitHub Desktop.
import java.io.Serializable;
public class TestJsonRessource {
private static final long serialVersionUID = 4254739092263227552L;
private String name;
private String age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAge() {
return age;
}
public void setAge(String age) {
this.age = age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment