aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-conflict-lib/openecomp-conflict-api/src/main/java/org/openecomp/conflicts/types/Conflict.java
blob: bc324af1dd6281711d337602f39e51339301a098 (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
package org.openecomp.conflicts.types;

import org.openecomp.sdc.datatypes.model.ElementType;

public class Conflict<T> extends ConflictInfo {
  private T yours;
  private T theirs;

  public Conflict(String id, ElementType type, String name) {
    super(id, type, name);
  }

  public T getYours() {
    return yours;
  }

  public void setYours(T yours) {
    this.yours = yours;
  }

  public T getTheirs() {
    return theirs;
  }

  public void setTheirs(T theirs) {
    this.theirs = theirs;
  }


}