public class Product { Long lngProductid = new Long(0) ; String strProductname = new String() ; String strDescription = new String() ; Long lngPrice = new Long(0) ; public void setProductid(Long value) { lngProductid = value; } public Long getProductid() { return lngProductid; } public void setProductname(String value) { strProductname = value; } public String getProductname() { return strProductname; } public void setDescription(String value) { strDescription = value; } public String getDescription() { return strDescription; } public void setPrice(Long value) { lngPrice = value; } public Long getPrice() { return lngPrice; } }