@TransactionAttribute(TransactionAttributeType.SUPPORTS)
public void fillLibrary() {
if (getNumBooks() != 0) {
return;
}
Author mann = createAuthor("Thomas", "Mann");
Author steinbeck = createAuthor("John", "Steinbeck");
createBook("Buddenbrooks", mann);
createBook("East of Eden", steinbeck);
}