// Create a new Feed
Factory factory = Abdera.getNewFactory();
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