convention). Only the "regular" (non-administrative) beans (except bean helper)
may be annotated with SessionScoped.
Signed-off-by: Roland Häder <roland@mxchange.org>
package org.mxchange.pizzaapplication.beans.business.basicdata;
import javax.annotation.PostConstruct;
-import javax.enterprise.context.SessionScoped;
+import javax.enterprise.context.RequestScoped;
import javax.faces.view.facelets.FaceletException;
import javax.inject.Named;
import javax.naming.Context;
* @author Roland Häder<roland@mxchange.org>
*/
@Named ("adminBusinessDataController")
-@SessionScoped
+@RequestScoped
public class PizzaAdminBusinessDataWebRequestBean extends BasePizzaController implements PizzaAdminBusinessDataWebRequestController {
/**