Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / v3 / model / Pagination.java
index 547c437..a292b13 100644 (file)
@@ -23,29 +23,34 @@ package org.onap.so.cloudify.v3.model;
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 public class Pagination {
-       @JsonProperty("total")
-       private int total;
-       @JsonProperty("offset")
-       private int offset;
-       @JsonProperty("size")
-       private int size;
-       
-       public int getTotal() {
-               return total;
-       }
-       public void setTotal(int total) {
-               this.total = total;
-       }
-       public int getOffset() {
-               return offset;
-       }
-       public void setOffset(int offset) {
-               this.offset = offset;
-       }
-       public int getSize() {
-               return size;
-       }
-       public void setSize(int size) {
-               this.size = size;
-       }
+    @JsonProperty("total")
+    private int total;
+    @JsonProperty("offset")
+    private int offset;
+    @JsonProperty("size")
+    private int size;
+
+    public int getTotal() {
+        return total;
+    }
+
+    public void setTotal(int total) {
+        this.total = total;
+    }
+
+    public int getOffset() {
+        return offset;
+    }
+
+    public void setOffset(int offset) {
+        this.offset = offset;
+    }
+
+    public int getSize() {
+        return size;
+    }
+
+    public void setSize(int size) {
+        this.size = size;
+    }
 }