Files
Athou_commafeed/src/main/java/com/commafeed/backend/feeds/FetchedFeed.java

49 lines
924 B
Java
Raw Normal View History

2013-04-25 12:30:21 +02:00
package com.commafeed.backend.feeds;
import java.util.List;
2013-04-25 12:30:21 +02:00
import com.commafeed.backend.model.Feed;
import com.commafeed.backend.model.FeedEntry;
import com.google.api.client.util.Lists;
public class FetchedFeed {
private Feed feed = new Feed();
private List<FeedEntry> entries = Lists.newArrayList();
2013-04-25 12:30:21 +02:00
private String title;
private long fetchDuration;
2013-05-20 14:06:09 +02:00
2013-04-25 12:30:21 +02:00
public Feed getFeed() {
return feed;
}
public void setFeed(Feed feed) {
this.feed = feed;
}
public List<FeedEntry> getEntries() {
2013-04-25 12:30:21 +02:00
return entries;
}
public void setEntries(List<FeedEntry> entries) {
2013-04-25 12:30:21 +02:00
this.entries = entries;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public long getFetchDuration() {
return fetchDuration;
}
public void setFetchDuration(long fetchDuration) {
this.fetchDuration = fetchDuration;
}
}