1 package org.apache.tapestry.pets.domain.model.pojo; 2 3 public class Product 4 { 6 private String productID; 7 private String name; 8 private String productLocale; 9 private String image; 10 private String descn; 11 12 public String getProductName() 13 { 14 return name; 15 } 16 17 public String getProductID() 18 { 19 return productID; 20 } 21 22 public void setProductName(String name) 23 { 24 this.name = name; 25 } 26 27 public void setProductID(String productID) 28 { 29 this.productID = productID; 30 } 31 32 public String getProductLocale() 33 { 34 return productLocale; 35 } 36 37 public void setProductLocale(String productLocale) 38 { 39 this.productLocale = productLocale; 40 } 41 42 public String getDescn() 43 { 44 return descn; 45 } 46 47 public String getImage() 48 { 49 return image; 50 } 51 52 public String getName() 53 { 54 return name; 55 } 56 57 public void setDescn(String descn) 58 { 59 this.descn = descn; 60 } 61 62 public void setImage(String image) 63 { 64 this.image = image; 65 } 66 67 public void setName(String name) 68 { 69 this.name = name; 70 } 71 } 72 | Popular Tags |