// A proper implementation would load all blog posts from some resource
// such as files or a database.
List<BlogPost> blogEntries = new ArrayList<BlogPost>();
// Create a sample entry
final BlogPost samplePost =
new BlogPost(
FEED_AUTHOR,
"Apache Tuscany in Action book features SCA Tours",
"We are famous as SCA Tours has been featured in the Apache Tuscany in Action book published by Manning",
new Date(), "http://www.manning.com/laws/", null);