package com.commafeed.frontend.model; import java.io.Serializable; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import com.google.common.collect.Lists; import com.wordnik.swagger.annotations.ApiClass; import com.wordnik.swagger.annotations.ApiProperty; @SuppressWarnings("serial") @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) @ApiClass("List of entries with some metadata") public class Entries implements Serializable { @ApiProperty("name of the feed or the category requested") private String name; @ApiProperty("error or warning message") private String message; @ApiProperty("times the server tried to refresh the feed and failed") private int errorCount; @ApiProperty("list generation timestamp") private long timestamp; @ApiProperty("if the query has more elements") private boolean hasMore; @ApiProperty("list of entries") private List entries = Lists.newArrayList(); public String getName() { return name; } public void setName(String name) { this.name = name; } public List getEntries() { return entries; } public void setEntries(List entries) { this.entries = entries; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public int getErrorCount() { return errorCount; } public void setErrorCount(int errorCount) { this.errorCount = errorCount; } public long getTimestamp() { return timestamp; } public void setTimestamp(long timestamp) { this.timestamp = timestamp; } public boolean isHasMore() { return hasMore; } public void setHasMore(boolean hasMore) { this.hasMore = hasMore; } }