}
return "deleteClicked";
}
public String createTopic() {
Category newCategory = new Category();
newCategory.setName(_name);
try {
getBusinessController().createCategory(newCategory);
FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_INFO,MapacheUIUtils.getTranslation("info_category_created",null),MapacheUIUtils.getTranslation("info_category_created",null)));
_createMode = false;
} catch (MapacheException e) {