Wicket SyndEntryListModel
wicket component for consuming rss feeds and displaying info in your application
Displaying information from RSS/Atom feeds within your application is trivial with this component.
public class HomePage extends WebPage { public HomePage() { add(new ListView("entry", new SyndEntryListModel("http://feeds.feedburner.com/code_poet")) { @Override protected void populateItem(ListItem item) { SyndEntry entry = (SyndEntry) item.getModelObject(); item.add(new Label("title", entry.getTitle())); } }); } }
Original component contributed by Ryan Sonnek:
http://www.jroller.com/wireframe/entry/consume_rss_feeds_within_wicket