Design and implement Java program as follows:
(1) There will be a Book Java class with following attributes: id, title, and price.
(2) There will be an Inventory Java class which stores and manages a list of Book objects
(3) Inventory class will provide the following functionality:
a. Add: Prompts user for book data and add to the inventory list. If the book already exists (based on id value), the add request will fail and an error message will be printed to the console
b. Remove. Prompts user for book id, finds the id in the inventory list and removes it. If the book matching the id is not in the inventory, remove request will fail and an error message will be printed to the console
c. Find: Prompts user for book id, finds the id in the inventory list and print all the data for the book (id, title, and price). If the book matching the id is not in the inventory, find request will fail and an error message will be printed to the console
d. Display: Print all the book information for each book to the console
(4) Implement RunInventory class with main method that will provide the menu with selection for each above functionality.