]> git.mxchange.org Git - jjobs-core.git/blob - src/org/mxchange/jjobs/model/jobposition/HireableJobPosition.java
Updated jar(s)
[jjobs-core.git] / src / org / mxchange / jjobs / model / jobposition / HireableJobPosition.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.jjobs.model.jobposition;
18
19 import java.util.Calendar;
20 import org.mxchange.jcontactsbusiness.model.jobposition.JobPosition;
21 import org.mxchange.jjobs.model.jobposition.status.JobPositionStatus;
22 import org.mxchange.jusercore.model.user.User;
23
24 /**
25  * A  POJI for hireable job positions
26  * <p>
27  * @author Roland Häder<roland@mxchange.org>
28  */
29 public interface HireableJobPosition extends JobPosition {
30
31         /**
32          * Getter for job position start
33          * <p>
34          * @return Job position start
35          */
36         Calendar getJobPositionStart ();
37
38         /**
39          * Setter for job position start
40          * <p>
41          * @param jobPositionStart Job position start
42          */
43         void setJobPositionStart (final Calendar jobPositionStart);
44
45         /**
46          * Getter for job position status
47          * <p>
48          * @return Job position status
49          */
50         JobPositionStatus getJobPositionStatus ();
51
52         /**
53          * Setter for job position status
54          * <p>
55          * @param jobPositionStatus Job position status
56          */
57         void setJobPositionStatus (final JobPositionStatus jobPositionStatus);
58
59         /**
60          * Getter for when this job position was deleted by user
61          * <p>
62          * @return When this job position was deleted by user
63          */
64         Calendar getJobPositionDeleted ();
65
66         /**
67          * Setter for when this job position was deleted by user
68          * <p>
69          * @param jobPositionDeleted When this job position was deleted by user
70          */
71         void setJobPositionDeleted (final Calendar jobPositionDeleted);
72
73         /**
74          * Getter for when this job position has expired
75          * <p>
76          * @return When this job position has expired
77          */
78         Calendar getJobPositionExpired ();
79
80         /**
81          * Setter for when this job position has expired
82          * <p>
83          * @param jobPositionExpired When this job position has expired
84          */
85         void setJobPositionExpired (final Calendar jobPositionExpired);
86
87         /**
88          * Getter for when employee was hired for this job position
89          * <p>
90          * @return When employee was hired for this job position
91          */
92         Calendar getJobPositionHired ();
93
94         /**
95          * Setter for when employee was hired for this job position
96          * <p>
97          * @param jobPositionHired When employee was hired for this job position
98          */
99         void setJobPositionHired (final Calendar jobPositionHired);
100
101         /**
102          * Getter for user who added this job position
103          * <p>
104          * @return User who added this job position
105          */
106         User getJobPositionAddedUser ();
107
108         /**
109          * Setter for user who added this job position
110          * <p>
111          * @param jobPositionAddedUser User who added this job position
112          */
113         void setJobPositionAddedUser (final User jobPositionAddedUser);
114
115 }