]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/enums/PizzaServiceDataWebBean.java
Fixed package locations
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / enums / PizzaServiceDataWebBean.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.pizzaapplication.beans.enums;
18
19 import java.text.MessageFormat;
20 import java.util.Arrays;
21 import java.util.List;
22 import javax.enterprise.context.ApplicationScoped;
23 import javax.inject.Named;
24 import org.mxchange.jcore.model.contact.gender.Gender;
25 import org.mxchange.jshopejb.beans.BaseFrameworkBean;
26
27 /**
28  * A customer bean which hides the customer instance
29  *
30  * @author Roland Haeder
31  */
32 @Named ("data")
33 @ApplicationScoped
34 public class PizzaServiceDataWebBean extends BaseFrameworkBean implements DataWebBean {
35
36         /**
37          * Serial number
38          */
39         private static final long serialVersionUID = 835482364189L;
40
41         @Override
42         public Gender[] getGenders () {
43                 // Trace message
44                 this.getLogger().trace(MessageFormat.format("Genders={0} - EXIT!", Arrays.toString(Gender.values())));
45
46                 // Return it
47                 return Gender.values();
48         }
49
50         @Override
51         public List<Gender> getSelectableGenders () {
52                 // Trace message
53                 this.getLogger().trace("CALLED!"); //NOI18N
54
55                 // Init array
56                 // TODO Call EJB here?
57                 List<Gender> genders = null;
58
59                 // Trace message
60                 this.getLogger().trace(MessageFormat.format("genders={0} - EXIT!", genders)); //NOI18N
61
62                 // Return it
63                 return genders;
64         }
65 }