Created
January 24, 2021 22:45
-
-
Save yostane/40f167418edbd26452da390cbfff3289 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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