package org.openecomp.sdcrests.conflict.types; import java.util.Map; public class ConflictDto extends ConflictInfoDto { private Map yours; private Map theirs; public Map getYours() { return yours; } public void setYours(Map yours) { this.yours = yours; } public Map getTheirs() { return theirs; } public void setTheirs(Map theirs) { this.theirs = theirs; } }