aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java
blob: 1b4e2434ef844c4dfe0a97b8a4c811cf8d7edb14 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package org.onap.sdc.toscaparser.api;

import java.util.Map;

public class RequirementAssignment {

    private String name;
    private String nodeName;
    private String capabilityName;
    private Object relationship;

    public RequirementAssignment(String reqName, String nodeName) {
        this.name = reqName;
        this.nodeName = nodeName;
    }

    public RequirementAssignment(String reqName, String nodeName, String capabilityName) {
        this.name = reqName;
        this.nodeName = nodeName;
        this.capabilityName = capabilityName;
    }

    public RequirementAssignment(String reqName, String nodeName, String capabilityName, Object relationship) {
        this.name = reqName;
        this.nodeName = nodeName;
        this.capabilityName = capabilityName;
        this.relationship = relationship;
    }

    /**
     * Get the name for requirement assignment.
     * @return the name for requirement assignment.
     */
    public String getName() {
        return name;
    }

    /**
     * Set the name for requirement
     * @param name - the name for requirement to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Get the node name for requirement assignment.
     * @return the node name for requirement
     */
    public String getNodeTemplateName() {
        return nodeName;
    }

    /**
     * Set the node name for requirement
     * @param nodeName - the node name for requirement to set
     */
    public void setNodeTemplateName(String nodeName) {
        this.nodeName = nodeName;
    }

    /**
     * Get the capability name for requirement assignment.
     * @return the capability name for requirement
     */
    public String getCapabilityName() {
        return capabilityName;
    }

    /**
     * Set the capability name for requirement assignment.
     * @param capabilityName - the capability name for requirement to set
     */
    public void setCapabilityName(String capabilityName) {
        this.capabilityName = capabilityName;
    }

    /**
     * Get the relationship object for requirement
     * @return the relationship object for requirement
     */
    public Object getRelationship() {
        return relationship;
    }
}