001: package com.ibatis.jpetstore.domain;
002:
003: import java.io.Serializable;
004: import java.math.BigDecimal;
005:
006: public class Item implements Serializable {
007:
008: /* Private Fields */
009:
010: private String itemId;
011:
012: private String productId;
013:
014: private BigDecimal listPrice;
015:
016: private BigDecimal unitCost;
017:
018: private int supplierId;
019:
020: private String status;
021:
022: private String attribute1;
023:
024: private String attribute2;
025:
026: private String attribute3;
027:
028: private String attribute4;
029:
030: private String attribute5;
031:
032: private Product product;
033:
034: private int quantity;
035:
036: /* JavaBeans Properties */
037:
038: public String getItemId() {
039: return itemId;
040: }
041:
042: public void setItemId(String itemId) {
043: this .itemId = itemId.trim();
044: }
045:
046: public int getQuantity() {
047: return quantity;
048: }
049:
050: public void setQuantity(int quantity) {
051: this .quantity = quantity;
052: }
053:
054: public Product getProduct() {
055: return product;
056: }
057:
058: public void setProduct(Product product) {
059: this .product = product;
060: }
061:
062: public String getProductId() {
063: return productId;
064: }
065:
066: public void setProductId(String productId) {
067: this .productId = productId;
068: }
069:
070: public int getSupplierId() {
071: return supplierId;
072: }
073:
074: public void setSupplierId(int supplierId) {
075: this .supplierId = supplierId;
076: }
077:
078: public BigDecimal getListPrice() {
079: return listPrice;
080: }
081:
082: public void setListPrice(BigDecimal listPrice) {
083: this .listPrice = listPrice;
084: }
085:
086: public BigDecimal getUnitCost() {
087: return unitCost;
088: }
089:
090: public void setUnitCost(BigDecimal unitCost) {
091: this .unitCost = unitCost;
092: }
093:
094: public String getStatus() {
095: return status;
096: }
097:
098: public void setStatus(String status) {
099: this .status = status;
100: }
101:
102: public String getAttribute1() {
103: return attribute1;
104: }
105:
106: public void setAttribute1(String attribute1) {
107: this .attribute1 = attribute1;
108: }
109:
110: public String getAttribute2() {
111: return attribute2;
112: }
113:
114: public void setAttribute2(String attribute2) {
115: this .attribute2 = attribute2;
116: }
117:
118: public String getAttribute3() {
119: return attribute3;
120: }
121:
122: public void setAttribute3(String attribute3) {
123: this .attribute3 = attribute3;
124: }
125:
126: public String getAttribute4() {
127: return attribute4;
128: }
129:
130: public void setAttribute4(String attribute4) {
131: this .attribute4 = attribute4;
132: }
133:
134: public String getAttribute5() {
135: return attribute5;
136: }
137:
138: public void setAttribute5(String attribute5) {
139: this .attribute5 = attribute5;
140: }
141:
142: /* Public Methods */
143:
144: public String toString() {
145: return "(" + getItemId().trim() + "-" + getProductId().trim()
146: + ")";
147: }
148:
149: }
|