]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/gender/JobsGenderWebApplicationBean.java
Please cherry-pick:
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / gender / JobsGenderWebApplicationBean.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 Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (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 Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jjobs.beans.gender;
18
19 import java.util.List;
20 import javax.annotation.PostConstruct;
21 import javax.enterprise.context.ApplicationScoped;
22 import javax.inject.Named;
23 import org.mxchange.jcontacts.contact.title.PersonalTitle;
24 import org.mxchange.jcontacts.contact.title.TitleUtils;
25 import org.mxchange.jjobs.beans.BaseJobsController;
26
27 /**
28  * A gender and title bean
29  * <p>
30  * @author Roland Häder<roland@mxchange.org>
31  */
32 @Named ("genderController")
33 @ApplicationScoped
34 public class JobsGenderWebApplicationBean extends BaseJobsController implements JobsGenderWebApplicationController {
35
36         /**
37          * Serial number
38          */
39         private static final long serialVersionUID = 835_482_364_189L;
40
41         /**
42          * Default constructor
43          */
44         public JobsGenderWebApplicationBean () {
45                 // Call super constructor
46                 super();
47         }
48
49         @Override
50         public PersonalTitle[] getAllGenders () {
51                 // Return it
52                 return PersonalTitle.values();
53         }
54
55         @Override
56         public List<PersonalTitle> getSelectableGenders () {
57                 // Init array
58                 List<PersonalTitle> genders = TitleUtils.allPersonalTitlesAsList();
59
60                 // Return it
61                 return genders;
62         }
63
64         /**
65          * Post-construction method
66          */
67         @PostConstruct
68         public void init () {
69         }
70
71 }