1 package org.apache.tapestry.pets.domain.model.pojo; 2 3 import org.apache.commons.lang.builder.ToStringBuilder; 4 5 6 public class VProducts 7 { 8 9 10 private String catid; 11 12 13 private String productid; 14 15 16 private String image; 17 18 19 private String locale; 20 21 22 private String name; 23 24 25 private String descn; 26 27 28 public VProducts( 29 java.lang.String catid, 30 java.lang.String productid, 31 java.lang.String image, 32 java.lang.String locale, 33 java.lang.String name, 34 java.lang.String descn) 35 { 36 this.catid = catid; 37 this.productid = productid; 38 this.image = image; 39 this.locale = locale; 40 this.name = name; 41 this.descn = descn; 42 } 43 44 45 public VProducts() 46 { 47 } 48 49 public java.lang.String getCatid() 50 { 51 return this.catid; 52 } 53 54 public void setCatid(java.lang.String catid) 55 { 56 this.catid = catid; 57 } 58 59 public java.lang.String getProductid() 60 { 61 return this.productid; 62 } 63 64 public void setProductid(java.lang.String productid) 65 { 66 this.productid = productid; 67 } 68 69 public java.lang.String getImage() 70 { 71 return this.image; 72 } 73 74 public void setImage(java.lang.String image) 75 { 76 this.image = image; 77 } 78 79 public java.lang.String getLocale() 80 { 81 return this.locale; 82 } 83 84 public void setLocale(java.lang.String locale) 85 { 86 this.locale = locale; 87 } 88 89 public java.lang.String getName() 90 { 91 return this.name; 92 } 93 94 public void setName(java.lang.String name) 95 { 96 this.name = name; 97 } 98 99 public java.lang.String getDescn() 100 { 101 return this.descn; 102 } 103 104 public void setDescn(java.lang.String descn) 105 { 106 this.descn = descn; 107 } 108 109 public String toString() 110 { 111 return new ToStringBuilder(this).toString(); 112 } 113 114 } 115 | Popular Tags |