1 | public class StateProvince {↵ | | 1 | public class Being {↵
|
2 | private Long id;↵ | | 2 | private long id;↵
|
3 | private String name;↵ | | 3 | private String identity;↵
|
4 | private String isoCode;↵ | | 4 | private String ↵
|
|
5 | public Long getId() {↵ | | |
|
6 | return id↵ | | 5 | location;↵
|
7 | ;↵ | | 6 | private String species;↵
|
8 | }↵ | | 7 | ↵
|
|
9 | public void setId(Long id) {↵ | | 8 | public void set↵
|
10 | this.id = id↵ | | 9 | Location(String location) {↵
|
11 | ;↵ | | 10 | this.location = location;↵
|
12 | }↵ | | 11 | }↵
|
|
13 | public String getName() {↵ | | 12 | public String getLocation() {↵
|
14 | return name;↵ | | 13 | return location;↵
|
15 | }↵ | | 14 | }↵
|
|
16 | public void setName(String name) {↵ | | 15 | public void setSpecies(String species) {↵
|
17 | this.name = name;↵ | | 16 | this.species = species;↵
|
18 | }↵ | | 17 | }↵
|
|
19 | public String getIsoCode() {↵ | | 18 | public String getSpecies() {↵
|
20 | return isoCode;↵ | | 19 | return species;↵
|
21 | }↵ | | 20 | }↵
|
|
22 | public void setIsoCode(String isoCode) {↵ | | 21 | public void setIdentity(String identity) {↵
|
23 | this.isoCode = isoCode | | 22 | this.identity = identity;↵
|
| | | 23 | }↵
|
| | | 24 | public String getIdentity() {↵
|
| | | 25 | return identity
|