]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java
4324ba7d95e0cc9bd96a2937447ef26729d8d82d
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / data / JobsDataWebApplicationBean.java
1 /*
2  * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
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.data;
18
19 import javax.enterprise.context.ApplicationScoped;
20 import javax.inject.Named;
21 import org.mxchange.jjobs.beans.BaseJobsBean;
22 import org.mxchange.jproduct.model.payment.PaymentType;
23
24 /**
25  * An application-scoped data bean for any kind of static data
26  * <p>
27  * @author Roland Haeder<roland@mxchange.org>
28  */
29 @Named ("dataController")
30 @ApplicationScoped
31 public class JobsDataWebApplicationBean extends BaseJobsBean {
32
33         /**
34          * Serial number
35          */
36         private static final long serialVersionUID = 34_869_872_672_641L;
37
38         /**
39          * Default constructor
40          */
41         public JobsDataWebApplicationBean () {
42                 // Call super constructor
43                 super();
44         }
45
46         /**
47          * Returns a list of all payment types
48          * <p>
49          * @return A list of all payment types
50          */
51         public PaymentType[] getPaymentTypes () {
52                 return PaymentType.values();
53         }
54
55 }