// process the authors
Iterator<Author> authors = entry.getAuthors();
while( authors.hasNext() )
{
Author author = authors.next();
System.out.println("Author - " + author.toString() );
}
Iterator<String> categories = entry.getCategories();
while( categories.hasNext() )
{