]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jshopcore/model/category/Category.java
Continued:
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / category / Category.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.category;
18
19 import java.io.Serializable;
20
21 /**
22  * An interface for categories
23  *
24  * @author Roland Haeder
25  */
26 public interface Category extends Comparable<Category>, Serializable {
27
28         /**
29          * Id number of category
30          * @return the id
31          */
32         public Long getCategoryId ();
33
34         /**
35          * Id number of category
36          * @param id the id to set
37          */
38         public void setCategoryId (final Long id);
39
40         /**
41          * Parent category id
42          * @return the parent
43          */
44         public Long getParentId ();
45
46         /**
47          * Parent category id
48          * @param parent the parent to set
49          */
50         public void setParentId (final Long parent);
51
52         /**
53          * Title of category
54          * @return the title
55          */
56         public String getTitle ();
57
58         /**
59          * Title of category
60          * @param title the title to set
61          */
62         public void setTitle (final String title);
63
64         /**
65          * Compare method
66          * @param category Category to compare to
67          * @return Comparison value
68          */
69         @Override
70         public int compareTo (final Category category);
71 }