public static void main(String[] args) {
    InventoryService inventoryService =
        (InventoryService) AuditProxy.newInstance(new MyInventoryService());

    inventoryService.create(new Inventory("1"));
    inventoryService.create(new Inventory("2"));
  }