Java Programming: Objective: Design, implement, and use classes and objects with inheritance (including overriding methods) This discussion is intended to accompany project 4, which will be published next week. You will create a class for a zoo animal that implements the following iAnimal interface: public interface iAnimal { public String getAnimalType(); public int getIdTag(); public void setIdTag(int anIdTag); public int getMinTemperature(); public int getMaxTemperature(); } Create a class that implements the interface listed above for an animal type that begins with the same letter as your last name. For example, my last name begins with M, so I might create a Mongoose class. Your class must implement the interface and it must compile. If you cannot find an animal that begins with the same letter as your last name, you can choose an animal type that begins with the same letter as your first name.