]> git.mxchange.org Git - jproduct-core.git/blob - src/org/mxchange/jproduct/model/product/Product.java
Continued:
[jproduct-core.git] / src / org / mxchange / jproduct / model / product / Product.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
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.jproduct.model.product;
18
19 import java.io.Serializable;
20 import java.util.Date;
21 import org.mxchange.jproduct.model.category.Category;
22
23 /**
24  * An interface for in database storable products
25  * <p>
26  * @author Roland Häder<roland@mxchange.org>
27  */
28 public interface Product extends Serializable {
29
30         /**
31          * Getter for created timestamp
32          * <p>
33          * @return Created timestamp
34          */
35         Date getProductCreated ();
36
37         /**
38          * Setter for created timestamp
39          * <p>
40          * @param productCreated Created timestamp
41          */
42         void setProductCreated (final Date productCreated);
43
44         /**
45          * Getter for product availability
46          * <p>
47          * @return Product availability
48          */
49         Boolean getProductAvailability ();
50
51         /**
52          * Setter for product availability
53          * <p>
54          * @param productAvailability Product availability
55          */
56         void setProductAvailability (final Boolean productAvailability);
57
58         /**
59          * Getter for product category id
60          * <p>
61          * @return Product category id
62          */
63         Category getProductCategory ();
64
65         /**
66          * Setter for product category
67          * <p>
68          * @param productCategory Product category
69          */
70         void setProductCategory (final Category productCategory);
71
72         /**
73          * Getter for id number, suitable for form fields.
74          * <p>
75          * @return Id number of product
76          */
77         Long getProductId ();
78
79         /**
80          * Id number of product
81          * <p>
82          * @param productId the id number to set
83          */
84         void setProductId (final Long productId);
85
86         /**
87          * Getter for raw price.
88          * <p>
89          * @return Single price of product
90          */
91         Float getProductPrice ();
92
93         /**
94          * Price of product
95          * <p>
96          * @param productPrice the price to set
97          */
98         void setProductPrice (final Float productPrice);
99
100         /**
101          * Getter for title.
102          * <p>
103          * @return Title of product
104          */
105         String getProductTitle ();
106
107         /**
108          * Title of product
109          * <p>
110          * @param productTitle the title to set
111          */
112         void setProductTitle (final String productTitle);
113
114         @Override
115         boolean equals (final Object object);
116
117         @Override
118         int hashCode ();
119
120 }