re base code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / merge / instance / RelationMergeInfo.java
1 package org.openecomp.sdc.be.components.merge.instance;
2
3 import org.openecomp.sdc.be.model.RequirementCapabilityRelDef;
4
5 public class RelationMergeInfo {
6     private String capReqType;
7     private String capOwnerName;
8     private RequirementCapabilityRelDef relDef;
9     private String capReqName;
10
11     public RelationMergeInfo(String capReqType, String capReqName, String capOwnerName, RequirementCapabilityRelDef relDef) {
12         this.capReqType = capReqType;
13         this.capReqName = capReqName;
14         this.capOwnerName = capOwnerName;
15         this.relDef = relDef;
16     }
17
18     public String getCapReqType() {
19         return capReqType;
20     }
21
22     public String getCapOwnerName() {
23         return capOwnerName;
24     }
25     public RequirementCapabilityRelDef getRelDef() {
26         return relDef;
27     }
28
29     public String getCapReqName() {
30         return capReqName;
31     }
32
33 }