// ... other methods without annotations unchanged since listing 11.x
 public void deleteOrder(Long orderId) {
   orderRepository.delete(orderRepository.find(orderId));
 }