]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jshopcore/model/basket/AddableBasketItem.java
Cleanup through inspection + updated jar(s)
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / basket / AddableBasketItem.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.basket;
18
19 import java.io.Serializable;
20 import org.mxchange.jshopcore.model.product.Product;
21
22 /**
23  * An interface for addable basket items
24  * <p>
25  * @author Roland Haeder<roland@mxchange.org>
26  */
27 public interface AddableBasketItem extends Serializable {
28
29         /**
30          * Check equality on item instance
31          * <p>
32          * @param object Other object to check
33          */
34         @Override
35          boolean equals (final Object object);
36
37         /**
38          * Getter for item amount
39          * <p>
40          * @return the amount
41          */
42         Long getOrderedAmount ();
43
44         /**
45          * Setter for item amount
46          * <p>
47          * @param amount the amount to set
48          */
49         void setOrderedAmount (final Long amount);
50
51         /**
52          * Getter for entry id (from database backend)
53          * <p>
54          * @return the id
55          */
56         Long getItemId ();
57
58         /**
59          * Setter for entry id (from database backend)
60          * <p>
61          * @param id the id to set
62          */
63         void setItemId (final Long id);
64
65         /**
66          * Getter for item type
67          * <p>
68          * @return the type
69          */
70         String getItemType ();
71
72         /**
73          * Setter for item type
74          * <p>
75          * @param type the type to set
76          */
77         void setItemType (final String type);
78
79         /**
80          * Getter for product instance
81          * <p>
82          * @return the product
83          */
84         Product getItemProduct ();
85
86         /**
87          * Setter fo product instance
88          * <p>
89          * @param product the product to set
90          */
91         void setItemProduct (final Product product);
92
93         /**
94          * Hash-code calculattion
95          */
96         @Override
97          int hashCode ();
98
99         /**
100          * Determines whether the item has a Product instance set
101          * <p>
102          * @return Whether a Product instance is set
103          */
104         boolean isProductType ();
105 }