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