use backend to populate data

This commit is contained in:
Athou
2013-03-22 20:51:22 +01:00
parent c6ec3c9517
commit f3ff02b476
14 changed files with 239 additions and 126 deletions

View File

@@ -2,9 +2,11 @@ package com.commafeed.frontend.rest.model;
import java.util.List;
import com.google.common.collect.Lists;
public class Entries {
private String name;
private List<Entry> entries;
private List<Entry> entries = Lists.newArrayList();
public String getName() {
return name;