else
{
for (String id : swaEndpoint.getNewspaperEditionIdList(from, to).getItem())
{
System.out.println("Downloading newspaper document: " + id);
EditionSWA edition = swaEndpoint.getNewspaperEdition(id);
DataHandler dh = edition.getContent();
System.out.println("Content type: " + dh.getContentType());
Object dataContent = dh.getContent();
System.out.println("Content: " + dataContent);
if (dataContent instanceof InputStream)
{