Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / v3 / model / Metadata.java
index 6ae895b..269ed9d 100644 (file)
 package org.onap.so.cloudify.v3.model;
 
 import com.fasterxml.jackson.annotation.JsonProperty;
-
 import java.io.Serializable;
 
 /**
- * This class represents a generic Cloudify response to a GET command.
- * These responses have a common format:
- * {
- *     "items": [
- *          List of objects of the requested type
- *     ],
- *     "metadata": {
- *     }
- * }
+ * This class represents a generic Cloudify response to a GET command. These responses have a common format: { "items":
+ * [ List of objects of the requested type ], "metadata": { } }
  * 
  * @author jc1348
  *
  */
 public class Metadata implements Serializable {
 
-       private static final long serialVersionUID = 1L;
-       
-       @JsonProperty("pagination")
-       private Pagination pagination;
-       
+    private static final long serialVersionUID = 1L;
+
+    @JsonProperty("pagination")
+    private Pagination pagination;
+
 
-       public Pagination getPagination() {
-               return pagination;
-       }
+    public Pagination getPagination() {
+        return pagination;
+    }
 
-       public void setPagination(Pagination pagination) {
-               this.pagination = pagination;
-       }
+    public void setPagination(Pagination pagination) {
+        this.pagination = pagination;
+    }
 
 }