All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.inteligr8.alfresco.activiti.model.ResultListDataRepresentation Maven / Gradle / Ivy

Go to download

An APS API library for building REST API clients that support both the CXF and Jersey frameworks

The newest version!

package com.inteligr8.alfresco.activiti.model;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.inteligr8.activiti.model.Datum;


/**
 * ResultListDataRepresentation
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "data", "size", "start", "total" }) public class ResultListDataRepresentation extends Datum { @JsonProperty("data") private List data = new ArrayList<>(); @JsonProperty("size") private Integer size; @JsonProperty("start") private Integer start; @JsonProperty("total") private Integer total; @JsonProperty("data") public List getData() { return data; } @JsonProperty("data") public void setData(List data) { this.data = data; } public ResultListDataRepresentation withData(List data) { this.data = data; return this; } @JsonProperty("size") public Integer getSize() { return size; } @JsonProperty("size") public void setSize(Integer size) { this.size = size; } public ResultListDataRepresentation withSize(Integer size) { this.size = size; return this; } @JsonProperty("start") public Integer getStart() { return start; } @JsonProperty("start") public void setStart(Integer start) { this.start = start; } public ResultListDataRepresentation withStart(Integer start) { this.start = start; return this; } @JsonProperty("total") public Integer getTotal() { return total; } @JsonProperty("total") public void setTotal(Integer total) { this.total = total; } public ResultListDataRepresentation withTotal(Integer total) { this.total = total; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy