Пример #1
0
 public void deleteCategoryAttribute() {
   categoryAttribute = categoryBean.findCategoryAttributeByID(id);
   categoryBean.removeCategoryAttribute(categoryAttribute);
   FacesContext.getCurrentInstance()
       .addMessage(
           "categoryAttributeList",
           new FacesMessage("CategoryAttribute " + categoryAttribute.getName() + " deleted."));
   this.categoryAttribute = new CategoryAttribute();
 }
Пример #2
0
 public void editCategoryAttributeSetup() {
   categoryAttribute = categoryBean.findCategoryAttributeByID(id);
 }