<Node id="customer/register.xhtml" x="1150" y="150" zoom="true"/>
<Node id="item_added.xhtml" x="150" y="750" zoom="true"/>
<Node id="admin/admin_user_list.xhtml" x="400" y="450" zoom="true"/>
- <Node id="admin/admin_logout.xhtml" x="900" y="600" zoom="true"/>
<Node id="terms.xhtml" x="900" y="150" zoom="true"/>
- <Node id="admin/admin_user_add.xhtml" x="400" y="150" zoom="true"/>
+ <Node id="admin/admin_logout.xhtml" x="900" y="600" zoom="true"/>
<Node id="customer/lost_passwd.xhtml" x="650" y="600" zoom="true"/>
+ <Node id="admin/admin_user_add.xhtml" x="400" y="150" zoom="true"/>
<Node id="admin/admin_user_edit.xhtml" x="150" y="150" zoom="true"/>
<Node id="errorHandler.xhtml" x="650" y="150" zoom="true"/>
<Node id="index.xhtml" x="150" y="450" zoom="true"/>
<Node id="admin/admin_category.xhtml" x="150" y="900" zoom="true"/>
<Node id="customer/checkout_done.xhtml" x="650" y="450" zoom="true"/>
<Node id="admin/admin_user_unlock.xhtml" x="400" y="300" zoom="true"/>
+ <Node id="*" x="1650" y="150" zoom="true"/>
<Node id="customer/login.xhtml" x="900" y="450" zoom="true"/>
<Node id="imprint.xhtml" x="400" y="750" zoom="true"/>
- <Node id="*" x="1650" y="150" zoom="true"/>
<Node id="admin/admin_product.xhtml" x="1400" y="150" zoom="true"/>
<Node id="customer/empty_basket.xhtml" x="1150" y="450" zoom="true"/>
</Scope>
*/
package org.mxchange.pizzaapplication.beans.product;
+import java.io.Serializable;
import java.util.List;
import javax.faces.view.facelets.FaceletException;
import org.mxchange.jshopcore.model.category.Category;
* <p>
* @author Roland Haeder<roland@mxchange.org>
*/
-public interface PizzaAdminProductWebRequestController {
+public interface PizzaAdminProductWebRequestController extends Serializable {
/**
* Adds given product data from request to database
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
- <h:selectOneMenu class="select" id="productCategory" value="#{adminProductController.productCategory}" required="true" requiredMessage="#{msg.ADMIN_CATEGORY_MUST_BE_SELECTED}" converter="CategoryConverter">
+ <h:selectOneMenu class="select" id="product_category" value="#{adminProductController.productCategory}" required="true" requiredMessage="#{msg.ADMIN_CATEGORY_MUST_BE_SELECTED}" converter="CategoryConverter">
<f:selectItems value="#{shopController.allCategories}" var="cat" itemValue="#{cat}" itemLabel="#{cat.categoryTitle}" />
</h:selectOneMenu>
</ui:composition>