47f0abd7949dc25d583ed23ca0d4f723fc1d60be
[sdc.git] /
1 package org.openecomp.sdcrests.conflict.types;
2
3 import java.util.Map;
4
5 public class ConflictDto extends ConflictInfoDto {
6   private Map<String, Object> yours;
7   private Map<String, Object> theirs;
8
9   public Map<String, Object> getYours() {
10     return yours;
11   }
12
13   public void setYours(Map<String, Object> yours) {
14     this.yours = yours;
15   }
16
17   public Map<String, Object> getTheirs() {
18     return theirs;
19   }
20
21   public void setTheirs(Map<String, Object> theirs) {
22     this.theirs = theirs;
23   }
24 }