// we need to configure the repository
EventSourcingRepository<ToDoItem> repository = new EventSourcingRepository<ToDoItem>(ToDoItem.class, eventStore);
repository.setEventBus(eventBus);
// Register the Command Handlers with the command bus by subscribing to the name of the command
commandBus.subscribe(CreateToDoItemCommand.class.getName(),
new CreateToDoCommandHandler(repository));
commandBus.subscribe(MarkCompletedCommand.class.getName(),
new MarkCompletedCommandHandler(repository));
// We register an event listener to see which events are created