summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-conflict-lib/openecomp-conflict-api/src/main/java/org/openecomp/conflicts/types/ConflictResolution.java
blob: 961f9080d931a124ddbdbe23d05f834bd0731b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.openecomp.conflicts.types;

import java.util.Map;

public class ConflictResolution {
  private Resolution resolution;
  // sits in lower level...
  private Map<String, Object> otherResolution;

  public ConflictResolution() {
  }

  public ConflictResolution(Resolution resolution) {
    this.resolution = resolution;
  }

  public Resolution getResolution() {
    return resolution;
  }

  public void setResolution(Resolution resolution) {
    this.resolution = resolution;
  }

  public Map<String, Object> getOtherResolution() {
    return otherResolution;
  }

  public void setOtherResolution(Map<String, Object> otherResolution) {
    this.otherResolution = otherResolution;
  }
}