Feed feed = factory.newFeed();
feed.setTitle(feedTitle);
feed.setSubtitle(feedDescription);
Person author = factory.newAuthor();
author.setName(feedAuthor);
feed.addAuthor(author);
feed.addLink("http://tuscany.apache.org/", "alternate");
// Aggregate entries from atomFeed1, atomFeed2, rssFeed1 and rssFeed2
List<Entry> entries = new ArrayList<Entry>();
if (atomFeed1 != null) {