]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/gender/GenderWebApplicationBean.java
renamed packages (addressbook import) + added event for logging in
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / gender / GenderWebApplicationBean.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.jjobs.beans.gender;
18
19 import java.util.List;
20 import javax.enterprise.context.ApplicationScoped;
21 import javax.inject.Named;
22 import org.mxchange.jcontacts.contact.gender.Gender;
23 import org.mxchange.jcontacts.contact.gender.GenderUtils;
24
25 /**
26  * A gender bean
27  * <p>
28  * @author Roland Haeder<roland@mxchange.org>
29  */
30 @Named ("gender")
31 @ApplicationScoped
32 public class GenderWebApplicationBean implements GenderWebApplicationController {
33
34         /**
35          * Serial number
36          */
37         private static final long serialVersionUID = 835_482_364_189L;
38
39         /**
40          * Default constructor
41          */
42         public GenderWebApplicationBean () {
43         }
44
45         @Override
46         public Gender[] getAllGenders () {
47                 // Return it
48                 return Gender.values();
49         }
50
51         @Override
52         public List<Gender> getSelectableGenders () {
53                 // Init array
54                 List<Gender> genders = GenderUtils.selectableGenders();
55
56                 // Return it
57                 return genders;
58         }
59 }