1 | public class AddressImpl implements Address {↵ | | 1 | public class ParentInfoAssigned {↵
|
2 | private Long id;↵ | | 2 | private Long id;↵
|
3 | private String addressType;↵ | | 3 | private ParentAssigned owner;↵
|
4 | private Server server;↵ | | 4 | private String info;↵
|
|
5 | public Long getId() {↵ | | 5 | public ↵
|
6 | return id;↵ | | |
|
7 | }↵ | | |
|
|
8 | public void setId(Lo↵ | | 6 | ParentInfoAssigned() {↵
|
| | | 7 | }↵
|
|
9 | ng id) {↵ | | 8 | public ParentInfoAssigned(String info) {↵
|
10 | this.id = id;↵ | | 9 | this.info = info;↵
|
11 | }↵ | | 10 | }↵
|
|
12 | public String getAddressType↵ | | 11 | public Long getId() {↵
|
| | | 12 | return id;↵
|
| | | 13 | }↵
|
|
13 | () {↵ | | 14 | public ParentAssigned getOwner() {↵
|
14 | return addressType;↵ | | 15 | return owner;↵
|
15 | }↵ | | 16 | }↵
|
|
16 | public void setAddressType(String addressType) {↵ | | 17 | public void set↵
|
17 | this.addressType = addressType↵ | | 18 | Owner(ParentAssigned owner) {↵
|
18 | ;↵ | | 19 | this.owner = owner;↵
|
19 | }↵ | | 20 | }↵
|
|
20 | public Server getServer() {↵ | | 21 | public String getInfo() {↵
|
21 | return server;↵ | | 22 | return info;↵
|
22 | }↵ | | 23 | }↵
|
|
23 | public void setServer(Server server) {↵ | | 24 | public void set↵
|
24 | this.server = server↵ | | 25 | Info(String info) {↵
|
25 | ;↵ | | 26 | this.info = info;↵
|
26 | | | 27 |
|