555657585960616263
/** * Construtor padrão. */ public ShopController() { this.product = new Product(); this.product.setCategory(new Category()); this.searchProduct = new Product(); this.searchProduct.setCategory(new Category()); }
5758596061626364
/** * Instancia um novo objeto category para cadastro em banco. * @return o caminho para o cadastro da categoria. */ public String registerCategory() { this.category = new Category(); return "adminRegisterCategory"; }
9899100101102103104105106
FacesUtil.mensErro("", FacesUtil.getMessage("adminRegisterCategoryError")); return null; } //Apresenta mensagem de sucesso na operação. FacesUtil.mensInfo("", FacesUtil.getMessage("SuccessInOperationMessage")); this.category = new Category(); return null; }
7879808182838485
*/ public String registerProduct() { this.smallImageFileUpload = null; this.imageFileUpload = null; this.product = new Product(); this.product.setCategory(new Category()); return "registerProduct"; }