1 | public class ServerImpl implements Server {
↵ | | 1 | public class StateProvince {↵
|
2 | private Long id;
↵ | | 2 | private Long id;↵
|
3 | private String serverType;
↵ | | 3 | private String name;↵
|
4 | private Address address;↵ | | 4 | private ↵
|
5 |
↵ | | 5 | String isoCode;↵
|
|
6 | public Long getId() {
↵ | | 6 | public Long getId() {↵
|
7 | return id;
↵ | | 7 | return id;↵
|
8 | }↵ | | 8 | }↵
|
9 |
↵ | | |
|
|
10 | public void setId(Long id) {
↵ | | 9 | public void setId(Long id) {↵
|
11 | this.id = id;
↵ | | 10 | this.id = id;↵
|
12 | }↵ | | 11 | }↵
|
13 |
↵ | | |
|
|
14 | public String getServerType() {
↵ | | 12 | public String getName() {↵
|
15 | return serverType;
↵ | | 13 | return name;↵
|
16 | }↵ | | 14 | }↵
|
17 |
↵ | | |
|
|
18 | public void setServerType(String serverType) {
↵ | | 15 | public void setName(String name) {↵
|
19 | this.serverType = serverType;
↵ | | 16 | this.name = name;↵
|
20 | }↵ | | 17 | }↵
|
21 |
↵ | | |
|
|
22 | public Address getAddress() {
↵ | | 18 | public String getIsoCode() {↵
|
23 | return address;↵ | | 19 | return ↵
|
24 | }↵ | | |
|
25 |
↵ | | 20 | isoCode;↵
|
| | | 21 | }↵
|
|
26 | public void setAddress(Address address) {
↵ | | 22 | public void setIsoCode(String isoCode) {↵
|
27 | this.address = address;
↵ | | 23 | this.isoCode = isoCode;↵
|
28 | | | 24 |
|