public class NewsServiceImpl implements NewsService {
private static Map<String, Entry> collection = new HashMap<String, Entry>();
@Init
public void init() {
Item item = new Item();
item.setName("Item Name 01");
item.setTitle("Item title 01");
Entry entry = new Entry();
entry.setKey("1");
entry.setData(item);