3ca77c27b36fef9b5253b12b6a44828e2ac053d7
[sdc.git] /
1 package org.openecomp.sdcrests.item.types;
2
3 public class ItemDto {
4   private String id;
5   private String type;
6   private String name;
7   private String description;
8   private String owner;
9
10   public String getId() {
11     return id;
12   }
13
14   public void setId(String id) {
15     this.id = id;
16   }
17
18   public String getType() {
19     return type;
20   }
21
22   public void setType(String type) {
23     this.type = type;
24   }
25
26   public String getName() {
27     return name;
28   }
29
30   public void setName(String name) {
31     this.name = name;
32   }
33
34   public String getDescription() {
35     return description;
36   }
37
38   public void setDescription(String description) {
39     this.description = description;
40   }
41
42   public String getOwner() {
43     return owner;
44   }
45
46   public void setOwner(String owner) {
47     this.owner = owner;
48   }
49 }