aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/merge/instance/RelationMergeInfo.java
blob: 4ab802ad3574287d09ca62adab9127458475d9cb (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package org.openecomp.sdc.be.components.merge.instance;

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

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

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

    public String getCapReqType() {
        return capReqType;
    }

    public void setCapReqType(String type) {
        this.capReqType = type;
    }

    public String getVfcInstanceName() {
        return vfcInstanceName;
    }

    public void setVfcInstanceName(String vfcInstanceName) {
        this.vfcInstanceName = vfcInstanceName;
    }

    public RequirementCapabilityRelDef getRelDef() {
        return relDef;
    }

    public void setRelDef(RequirementCapabilityRelDef relDef) {
        this.relDef = relDef;
    }

    public String getCapReqName() {
        return capReqName;
    }

    public void setCapReqName(String capReqName) {
        this.capReqName = capReqName;
    }
}