Add collaboration feature
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / conflict-rest / conflict-rest-types / src / main / java / org / openecomp / sdcrests / conflict / types / ConflictInfoDto.java
1 package org.openecomp.sdcrests.conflict.types;
2
3 import org.openecomp.sdc.datatypes.model.ElementType;
4
5 public class ConflictInfoDto {
6   private String id;
7   private ElementType type;
8   private String name;
9
10   public String getId() {
11     return id;
12   }
13
14   public void setId(String id) {
15     this.id = id;
16   }
17
18   public ElementType getType() {
19     return type;
20   }
21
22   public void setType(ElementType 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 }