]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/jobposition/JobPosition.java
Cleanup:
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / jobposition / JobPosition.java
1 /*
2  * Copyright (C) 2016 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.jcontactsbusiness.jobposition;
18
19 import java.io.Serializable;
20 import java.util.Calendar;
21
22 /**
23  * A POJI for job positions
24  * <p>
25  * @author Roland Haeder<roland@mxchange.org>
26  */
27 public interface JobPosition extends Serializable {
28
29         /**
30          * Getter for id number
31          * <p>
32          * @return Id number
33          */
34         Long getJobPositionId ();
35
36         /**
37          * Setter for id number
38          * <p>
39          * @param jobPositionId Id number
40          */
41         void setJobPositionId (final Long jobPositionId);
42
43         /**
44          * Getter for job position name
45          * <p>
46          * @return Job position name
47          */
48         String getJobPositionName ();
49
50         /**
51          * Setter for job position name
52          * <p>
53          * @param jobPositionName Job position name
54          */
55         void setJobPositionName (final String jobPositionName);
56
57         /**
58          * Getter for timestamp when this entry has been created
59          * <p>
60          * @return Timestamp when this entry has been created
61          */
62         Calendar getJobPositionCreated ();
63
64         /**
65          * Setter for timestamp when this entry has been created
66          * <p>
67          * @param jobPositionCreated Timestamp when this entry has been created
68          */
69         void setJobPositionCreated (final Calendar jobPositionCreated);
70
71         @Override
72         boolean equals (final Object object);
73
74         @Override
75         int hashCode ();
76 }