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 / ConflictResolutionDto.java
1 package org.openecomp.sdcrests.conflict.types;
2
3 import org.openecomp.conflicts.types.Resolution;
4
5 import java.util.Map;
6
7 public class ConflictResolutionDto {
8   private Resolution resolution;
9   // sits in lower level...
10   private Map<String, Object> otherResolution;
11
12   public Resolution getResolution() {
13     return resolution;
14   }
15
16   public void setResolution(Resolution resolution) {
17     this.resolution = resolution;
18   }
19
20   public Map<String, Object> getOtherResolution() {
21     return otherResolution;
22   }
23
24   public void setOtherResolution(Map<String, Object> otherResolution) {
25     this.otherResolution = otherResolution;
26   }
27 }