Add collaboration feature
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / item-rest / item-rest-types / src / main / java / org / openecomp / sdcrests / item / types / ItemDto.java
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
9   public String getId() {
10     return id;
11   }
12
13   public void setId(String id) {
14     this.id = id;
15   }
16
17   public String getType() {
18     return type;
19   }
20
21   public void setType(String type) {
22     this.type = type;
23   }
24
25   public String getName() {
26     return name;
27   }
28
29   public void setName(String name) {
30     this.name = name;
31   }
32
33   public String getDescription() {
34     return description;
35   }
36
37   public void setDescription(String description) {
38     this.description = description;
39   }
40 }