]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/profilemode/PizzaProfileModeWebApplicationBean.java
Updated copyright year
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / profilemode / PizzaProfileModeWebApplicationBean.java
index e2008ecd93f07ec51f29ea980d005bcf67ef37ae..5d90d19d371d4a8838641cb64ee29a2891f0172e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Häder
+ * Copyright (C) 2016 - 2024 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
  */
 package org.mxchange.pizzaapplication.beans.profilemode;
 
-import javax.annotation.PostConstruct;
 import javax.enterprise.context.ApplicationScoped;
 import javax.inject.Named;
 import org.mxchange.jusercore.model.user.profilemodes.ProfileMode;
-import org.mxchange.pizzaapplication.beans.BasePizzaController;
+import org.mxchange.pizzaapplication.beans.BasePizzaBean;
 
 /**
  * A profile mode bean
@@ -29,7 +28,7 @@ import org.mxchange.pizzaapplication.beans.BasePizzaController;
  */
 @Named ("profileModeController")
 @ApplicationScoped
-public class PizzaProfileModeWebApplicationBean extends BasePizzaController implements PizzaProfileModeWebApplicationController {
+public class PizzaProfileModeWebApplicationBean extends BasePizzaBean implements PizzaProfileModeWebApplicationController {
 
        /**
         * Serial number
@@ -40,6 +39,8 @@ public class PizzaProfileModeWebApplicationBean extends BasePizzaController impl
         * Default constructor
         */
        public PizzaProfileModeWebApplicationBean () {
+               // Call super constructor
+               super();
        }
 
        @Override
@@ -48,11 +49,4 @@ public class PizzaProfileModeWebApplicationBean extends BasePizzaController impl
                return ProfileMode.values();
        }
 
-       /**
-        * Post-construction method
-        */
-       @PostConstruct
-       public void init () {
-       }
-
 }