for (int ndx = 1; ndx < 6; ndx++) {
Thread.sleep(4000L);
List<BookType> newBooks = new LinkedList<BookType>();
BookType book = new BookType();
newBooks.add(book);
PersonType author = new PersonType();
book.getAuthor().add(author);
author.setFirstName("Jack");
author.setLastName("Icebear");
Calendar dateOfBirth = new GregorianCalendar(101, Calendar.JANUARY, 2);
author.setDateOfBirth(dateOfBirth.getTime());
book.getTitle().add("More About Survival in the Arctic - Volume " + ndx);
book.getPublisher().add("Frosty Edition");
book.setYearPublished("2011");
System.out.println("Publishing notification about a new book:");
System.out.println("Jack Icebear - More About Survival in the Arctic - Volume " + ndx);