aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/merge/instance/RelationMergeInfo.java
blob: da6ef7156e27605c6f3197d42a04c1a23d8365d9 (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
31
32
33
package org.openecomp.sdc.be.components.merge.instance;

import org.openecomp.sdc.be.model.RequirementCapabilityRelDef;

public class RelationMergeInfo {
    private String capReqType;
    private String capOwnerName;
    private RequirementCapabilityRelDef relDef;
    private String capReqName;

    public RelationMergeInfo(String capReqType, String capReqName, String capOwnerName, RequirementCapabilityRelDef relDef) {
        this.capReqType = capReqType;
        this.capReqName = capReqName;
        this.capOwnerName = capOwnerName;
        this.relDef = relDef;
    }

    public String getCapReqType() {
        return capReqType;
    }

    public String getCapOwnerName() {
        return capOwnerName;
    }
    public RequirementCapabilityRelDef getRelDef() {
        return relDef;
    }

    public String getCapReqName() {
        return capReqName;
    }

}