111213141516171819
List<MyBook> testEntries = MyBook.all().fetch(); render(testEntries); } public static void edit(Long id) { MyBook testObj = MyBook.findById(id); notFoundIfNull(testObj); render(testObj); }