aboutsummaryrefslogtreecommitdiffstats
path: root/jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java
diff options
context:
space:
mode:
Diffstat (limited to 'jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java')
-rw-r--r--jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java111
1 files changed, 111 insertions, 0 deletions
diff --git a/jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java b/jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java
new file mode 100644
index 0000000..227b2a9
--- /dev/null
+++ b/jtosca/src/main/java/org/onap/sdc/toscaparser/api/RequirementAssignment.java
@@ -0,0 +1,111 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.sdc.toscaparser.api;
+
+
+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;
+ }
+}