re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / Point.java
index e609f49..a8bf797 100644 (file)
@@ -22,38 +22,38 @@ package org.openecomp.sdc.be.model;
 
 public class Point {
 
-       String x;
-       String y;
-
-       public Point() {
-               super();
-       }
-
-       public Point(String x, String y) {
-               super();
-               this.x = x;
-               this.y = y;
-       }
-
-       public String getX() {
-               return x;
-       }
-
-       public void setX(String x) {
-               this.x = x;
-       }
-
-       public String getY() {
-               return y;
-       }
-
-       public void setY(String y) {
-               this.y = y;
-       }
-
-       @Override
-       public String toString() {
-               return "Point [x=" + x + ", y=" + y + "]";
-       }
+    String x;
+    String y;
+
+    public Point() {
+        super();
+    }
+
+    public Point(String x, String y) {
+        super();
+        this.x = x;
+        this.y = y;
+    }
+
+    public String getX() {
+        return x;
+    }
+
+    public void setX(String x) {
+        this.x = x;
+    }
+
+    public String getY() {
+        return y;
+    }
+
+    public void setY(String y) {
+        this.y = y;
+    }
+
+    @Override
+    public String toString() {
+        return "Point [x=" + x + ", y=" + y + "]";
+    }
 
 }