001: /**
002: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
003: */package com.odal.petstore.persistence.gen.bean;
004:
005: import java.math.BigDecimal;
006:
007: public class ItemPoBean implements java.io.Serializable {
008:
009: public ItemPoBean() {
010: }
011:
012: //
013: // Basic object stuff:
014: //
015: public ItemPoBean(String itemId) {
016: this ();
017: setItemId(itemId);
018: }
019:
020: private String itemId;
021: private String productId;
022: private BigDecimal listPrice;
023: private BigDecimal unitCost;
024: private Long supplier;
025: private String status;
026: private String attr1;
027: private String attr2;
028: private String attr3;
029: private String attr4;
030: private String attr5;
031:
032: //
033: // itemId:
034: //
035: public String getItemId() {
036: return this .itemId;
037: }
038:
039: public void setItemId(String itemId) {
040: this .itemId = itemId;
041: }
042:
043: //
044: // productId:
045: //
046: public String getProductId() {
047: return this .productId;
048: }
049:
050: public void setProductId(String productId) {
051: this .productId = productId;
052: }
053:
054: //
055: // listPrice:
056: //
057: public BigDecimal getListPrice() {
058: return this .listPrice;
059: }
060:
061: public void setListPrice(BigDecimal listPrice) {
062: this .listPrice = listPrice;
063: }
064:
065: //
066: // unitCost:
067: //
068: public BigDecimal getUnitCost() {
069: return this .unitCost;
070: }
071:
072: public void setUnitCost(BigDecimal unitCost) {
073: this .unitCost = unitCost;
074: }
075:
076: //
077: // supplier:
078: //
079: public Long getSupplier() {
080: return this .supplier;
081: }
082:
083: public void setSupplier(Long supplier) {
084: this .supplier = supplier;
085: }
086:
087: //
088: // status:
089: //
090: public String getStatus() {
091: return this .status;
092: }
093:
094: public void setStatus(String status) {
095: this .status = status;
096: }
097:
098: //
099: // attr1:
100: //
101: public String getAttr1() {
102: return this .attr1;
103: }
104:
105: public void setAttr1(String attr1) {
106: this .attr1 = attr1;
107: }
108:
109: //
110: // attr2:
111: //
112: public String getAttr2() {
113: return this .attr2;
114: }
115:
116: public void setAttr2(String attr2) {
117: this .attr2 = attr2;
118: }
119:
120: //
121: // attr3:
122: //
123: public String getAttr3() {
124: return this .attr3;
125: }
126:
127: public void setAttr3(String attr3) {
128: this .attr3 = attr3;
129: }
130:
131: //
132: // attr4:
133: //
134: public String getAttr4() {
135: return this .attr4;
136: }
137:
138: public void setAttr4(String attr4) {
139: this .attr4 = attr4;
140: }
141:
142: //
143: // attr5:
144: //
145: public String getAttr5() {
146: return this .attr5;
147: }
148:
149: public void setAttr5(String attr5) {
150: this .attr5 = attr5;
151: }
152:
153: //
154: // Complex object part:
155: //
156:
157: //
158: // Compound object part:
159: //
160:
161: // Containment type - "has"
162: private ProductPoBean product;
163:
164: public ProductPoBean getProduct() {
165: return product;
166: }
167:
168: protected void setProduct(ProductPoBean product) {
169: this .product = product;
170: }
171:
172: public String toString() {
173: StringBuffer buffer = new StringBuffer();
174: buffer.append("{ " + "class = \"").append(
175: this .getClass().getName()).append("\" fields = ")
176: .append("{ ");
177:
178: buffer.append("itemId").append(" = \"").append(itemId).append(
179: "\" ");
180: buffer.append("productId").append(" = \"").append(productId)
181: .append("\" ");
182: buffer.append("listPrice").append(" = \"").append(listPrice)
183: .append("\" ");
184: buffer.append("unitCost").append(" = \"").append(unitCost)
185: .append("\" ");
186: buffer.append("supplier").append(" = \"").append(supplier)
187: .append("\" ");
188: buffer.append("status").append(" = \"").append(status).append(
189: "\" ");
190: buffer.append("attr1").append(" = \"").append(attr1).append(
191: "\" ");
192: buffer.append("attr2").append(" = \"").append(attr2).append(
193: "\" ");
194: buffer.append("attr3").append(" = \"").append(attr3).append(
195: "\" ");
196: buffer.append("attr4").append(" = \"").append(attr4).append(
197: "\" ");
198: buffer.append("attr5").append(" = \"").append(attr5).append(
199: "\" ");
200: buffer.append("}}");
201: return buffer.toString();
202: }
203:
204: }
|