/* * Copyright 2006-2014 the original author or authors. * * 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.batch.sample.domain.order; import java.math.BigDecimal; public class LineItem { public static final String LINE_ID_ITEM = "LIT"; private long itemId; private BigDecimal price; private BigDecimal discountPerc; private BigDecimal discountAmount; private BigDecimal shippingPrice; private BigDecimal handlingPrice; private int quantity; private BigDecimal totalPrice; public BigDecimal getDiscountAmount() { return discountAmount; } public void setDiscountAmount(BigDecimal discountAmount) { this.discountAmount = discountAmount; } public BigDecimal getDiscountPerc() { return discountPerc; } public void setDiscountPerc(BigDecimal discountPerc) { this.discountPerc = discountPerc; } public BigDecimal getHandlingPrice() { return handlingPrice; } public void setHandlingPrice(BigDecimal handlingPrice) { this.handlingPrice = handlingPrice; } public long getItemId() { return itemId; } public void setItemId(long itemId) { this.itemId = itemId; } public BigDecimal getPrice() { return price; } public void setPrice(BigDecimal price) { this.price = price; } public int getQuantity() { return quantity; } public void setQuantity(int quantity) { this.quantity = quantity; } public BigDecimal getShippingPrice() { return shippingPrice; } public void setShippingPrice(BigDecimal shippingPrice) { this.shippingPrice = shippingPrice; } public BigDecimal getTotalPrice() { return totalPrice; } public void setTotalPrice(BigDecimal totalPrice) { this.totalPrice = totalPrice; } @Override public String toString() { return "LineItem [price=" + price + ", quantity=" + quantity + ", totalPrice=" + totalPrice + "]"; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + (int) (itemId ^ (itemId >>> 32)); result = prime * result + quantity; return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } LineItem other = (LineItem) obj; if (itemId != other.itemId) { return false; } if (quantity != other.quantity) { return false; } return true; } }