Add some initial unit test to cloudify client
[so.git] / cloudify-client / src / main / java / org / openecomp / mso / cloudify / v3 / model / Metadata.java
index d44e92b..31e3b0d 100644 (file)
@@ -54,31 +54,4 @@ public class Metadata implements Serializable {
                this.pagination = pagination;
        }
 
-       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;
-               }
-       }
 }