aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/conflict-rest/conflict-rest-types/src/main/java/org/openecomp/sdcrests/conflict/types/ConflictResolutionDto.java
blob: 1aaf18f85977e5a63f35cbc8600627f675c345a3 (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
package org.openecomp.sdcrests.conflict.types;

import org.openecomp.conflicts.types.Resolution;

import java.util.Map;

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

  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;
  }
}