public class UpdatePageRow { public String title; public String product; public String productType; public String lastUpdated; public String version; public String size; public String uuid; UpdatePageRow(String title, String product, String productType, String lastUpdated, String version, String size, String uuid) { this.title = title; this.product = product; this.productType = productType; this.lastUpdated = lastUpdated; this.version = version; this.size = size; this.uuid = uuid; } }