///////////////////////////////////////////////////////////////////////////////// ALL STUDENTS COMPLETE THESE SECTIONS// Main Class File: AmazonStore.java// File: Product.java// Semester: CS367 Spring 2015//// Author: Thomas Whitburn// CS Login: whitburn// Lecturer's Name: Jim Skrentny////////////////////// PAIR PROGRAMMERS COMPLETE THIS SECTION //////////////////////// Pair Partner: Haomin Li// Email: [email protected]// CS Login: haomin// Lecturer's Name: Jim Skrentny////////////////////////////// 80 columns wide ///////////////////////////////////*** Stores the name, category, price and rating of a product*/public class Product {private String name;private String category;private int price;private float rating;/*** Constructs a Product with a name, category, price and rating. * * @param name name of product* @param category category of product* @param price price of product in $ * @param rating rating of product out of 5*/public Product(String name, String category, int price, float rating){