Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-conflict-lib / openecomp-conflict-api / src / main / java / org / openecomp / conflicts / types / ConflictInfo.java
1 package org.openecomp.conflicts.types;
2
3 import org.openecomp.sdc.datatypes.model.ElementType;
4
5 public class ConflictInfo {
6   private String id;
7   private ElementType type;
8   private String name;
9
10   public ConflictInfo(String id, ElementType type, String name) {
11     this.id = id;
12     this.type = type;
13     this.name = name;
14   }
15
16   public String getId() {
17     return id;
18   }
19
20   public void setId(String id) {
21     this.id = id;
22   }
23
24   public ElementType getType() {
25     return type;
26   }
27
28   public void setType(ElementType type) {
29     this.type = type;
30   }
31
32   public String getName() {
33     return name;
34   }
35
36   public void setName(String name) {
37     this.name = name;
38   }
39 }