re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / RequirementInstance.java
index 14f4463..0aa8534 100644 (file)
@@ -25,35 +25,35 @@ package org.openecomp.sdc.be.model;
  */
 public class RequirementInstance {
 
-       /**
-        * specify the resource instance name as appears in the service
-        */
-       private String node;
-
-       /**
-        * specify the relationship impl
-        */
-       private RelationshipImpl relationship;
-
-       public String getNode() {
-               return node;
-       }
-
-       public void setNode(String node) {
-               this.node = node;
-       }
-
-       public RelationshipImpl getRelationship() {
-               return relationship;
-       }
-
-       public void setRelationship(RelationshipImpl relationship) {
-               this.relationship = relationship;
-       }
-
-       @Override
-       public String toString() {
-               return "RequirementInstance [node=" + node + ", relationship=" + relationship + "]";
-       }
+    /**
+     * specify the resource instance name as appears in the service
+     */
+    private String node;
+
+    /**
+     * specify the relationship impl
+     */
+    private RelationshipImpl relationship;
+
+    public String getNode() {
+        return node;
+    }
+
+    public void setNode(String node) {
+        this.node = node;
+    }
+
+    public RelationshipImpl getRelationship() {
+        return relationship;
+    }
+
+    public void setRelationship(RelationshipImpl relationship) {
+        this.relationship = relationship;
+    }
+
+    @Override
+    public String toString() {
+        return "RequirementInstance [node=" + node + ", relationship=" + relationship + "]";
+    }
 
 }