]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java
Updated copyright year
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / features / PizzaFeatureWebApplicationBean.java
1 /*
2  * Copyright (C) 2016 - 2020 Free Software Foundation
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.pizzaapplication.beans.features;
18
19 import javax.annotation.PostConstruct;
20 import javax.enterprise.context.ApplicationScoped;
21 import javax.inject.Named;
22 import org.mxchange.pizzaapplication.beans.BasePizzaBean;
23
24 /**
25  * A feature bean
26  * <p>
27  * @author Roland Häder<roland@mxchange.org>
28  */
29 @Named ("featureController")
30 @ApplicationScoped
31 public class PizzaFeatureWebApplicationBean extends BasePizzaBean implements PizzaFeaturesWebApplicationController {
32
33         /**
34          * Serial number
35          */
36         private static final long serialVersionUID = 64_237_512_690_168_674L;
37
38         /**
39          * Default constructor
40          */
41         public PizzaFeatureWebApplicationBean () {
42                 // Call super constructor
43                 super();
44         }
45
46         /**
47          * Post-construction method
48          */
49         @PostConstruct
50         public void init () {
51         }
52
53         @Override
54         public boolean isFeatureEnabled (final String feature) {
55                 // The parameter must be set
56                 if (null == feature) {
57                         // Throw NPE
58                         throw new NullPointerException("feature is null"); //NOI18N
59                 } else if (feature.isEmpty()) {
60                         // Is empty
61                         throw new IllegalArgumentException("feature is empty"); //NOI18N
62                 }
63
64                 // Default is not enabled
65                 boolean isEnabled = false;
66
67                 // Get value from property
68                 final String contextParameter = this.getStringContextParameter(String.format("is_feature_%s_enabled", feature)); //NOI18N
69
70                 // Is the context parameter found?
71                 if (contextParameter instanceof String) {
72                         // Is it set?
73                         isEnabled = (Boolean.parseBoolean(contextParameter) == Boolean.TRUE);
74                 }
75
76                 // Return status
77                 return isEnabled;
78         }
79
80 }