]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jshopcore/model/item/BasketItem.java
Continued:
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / item / BasketItem.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jshopcore.model.item;
18
19 import java.text.MessageFormat;
20 import org.mxchange.jshopcore.model.basket.AddableBasketItem;
21 import org.mxchange.jshopcore.model.product.Product;
22
23 /**
24  * A general basket item
25  *
26  * @author Roland Haeder
27  */
28 public class BasketItem extends BaseItem implements AddableBasketItem {
29         /**
30          * Serial number
31          */
32         private static final long serialVersionUID = 52_749_158_492_581_578L;
33
34         /**
35          * Default constructor
36          */
37         public BasketItem () {
38         }
39
40         /**
41          * Constructor for an item from given Product instance
42          * 
43          * @param product Product instance
44          */
45         public BasketItem (final Product product) {
46                 // Call default constructor
47                 this();
48
49                 // Trace message
50                 this.getLogger().logDebug(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
51
52                 // product must not be null
53                 if (null == product) {
54                         // Abort here
55                         throw new NullPointerException("product is null"); //NOI18N
56                 }
57
58                 // Copy all neccessary values
59                 this.setItemId(product.getItemId());
60                 this.setItemType("Product"); //NOI18N
61         }
62 }