/* Copyright 2009 Ramnivas Laddad Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.springframework.samples.jpetstore.domain; import java.io.Serializable; public class Item implements Serializable { /* Private Fields */ private String itemId; private String productId; private double listPrice; private double unitCost; private int supplierId; private String status; private String attribute1; private String attribute2; private String attribute3; private String attribute4; private String attribute5; private Product product; private int quantity; /* JavaBeans Properties */ public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId.trim(); } public int getQuantity() { return quantity; } public void setQuantity(int quantity) { this.quantity = quantity; } public Product getProduct() { return product; } public void setProduct(Product product) { this.product = product; } public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public int getSupplierId() { return supplierId; } public void setSupplierId(int supplierId) { this.supplierId = supplierId; } public double getListPrice() { return listPrice; } public void setListPrice(double listPrice) { this.listPrice = listPrice; } public double getUnitCost() { return unitCost; } public void setUnitCost(double unitCost) { this.unitCost = unitCost; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getAttribute1() { return attribute1; } public void setAttribute1(String attribute1) { this.attribute1 = attribute1; } public String getAttribute2() { return attribute2; } public void setAttribute2(String attribute2) { this.attribute2 = attribute2; } public String getAttribute3() { return attribute3; } public void setAttribute3(String attribute3) { this.attribute3 = attribute3; } public String getAttribute4() { return attribute4; } public void setAttribute4(String attribute4) { this.attribute4 = attribute4; } public String getAttribute5() { return attribute5; } public void setAttribute5(String attribute5) { this.attribute5 = attribute5; } /* Public Methods */ public String toString() { return "(" + getItemId().trim() + "-" + getProductId().trim() + ")"; } }