ProductBeanpublic class ProductBean extends Object A Product Bean
Encapsulates data regarding one product |
Fields Summary |
---|
private String | name | private String | description | private double | price | private String | sku |
Constructors Summary |
---|
public ProductBean()Zero-argument Constructor
| public ProductBean(String name, String description, double price, String sku)Constructor with full arguments
this.name = name;
this.description = description;
this.price = price;
this.sku = sku;
|
|