1 | public class AddressImpl implements Address {
↵ | | 1 | public class ProductLine {↵
|
|
2 | private Long id;
↵ | | 2 | private String id;↵
|
3 | private String addressType;↵ | | 3 | private String ↵
|
4 | private Server server;↵ | | |
|
5 |
↵ | | 4 | description;↵
|
| | | 5 | private Set models = new HashSet();↵
|
| | | 6 | ↵
|
6 | public Long getId() {
↵ | | 7 | public String getDescription() {↵
|
7 | return id;↵ | | 8 | return ↵
|
8 | }↵ | | |
|
9 |
↵ | | 9 | description;↵
|
| | | 10 | }↵
|
10 | public void setId(Long id) {
↵ | | 11 | public void setDescription(String description) {↵
|
11 | this.id = id;↵ | | 12 | this.↵
|
12 | }↵ | | |
|
13 |
↵ | | 13 | description = description;↵
|
| | | 14 | }↵
|
14 | public String getAddressType() {
↵ | | 15 | public String getId() {↵
|
15 | return addressType;↵ | | 16 | return ↵
|
16 | }↵ | | |
|
17 |
↵ | | 17 | id;↵
|
| | | 18 | }↵
|
18 | public void setAddressType(String addressType) {
↵ | | 19 | public void setId(String id) {↵
|
19 | this.addressType = addressType;↵ | | 20 | this.↵
|
20 | }↵ | | |
|
|
21 | public Server getServer↵ | | 21 | id = id;↵
|
| | | 22 | }↵
|
22 | () {
↵ | | 23 | public Set getModels() {↵
|
23 | return server;↵ | | 24 | return ↵
|
24 | }↵ | | |
|
25 |
↵ | | 25 | models;↵
|
| | | 26 | }↵
|
26 | public void setServer(Server server) {
↵ | | 27 | public void setModels(Set models) {↵
|
27 | this.server = server;
↵ | | 28 | this.models = models;↵
|
28 | | | 29 |
|