1 25 26 package org.infoglue.cms.entities.management; 27 28 import org.infoglue.cms.entities.kernel.IBaseEntity; 29 30 35 public interface Category extends IBaseEntity 36 { 37 public Integer getCategoryId(); 38 public void setCategoryId(Integer s); 39 40 public String getName(); 41 public void setName(String s); 42 43 public String getDescription(); 44 public void setDescription(String s); 45 46 public boolean isActive(); 47 public void setActive(boolean b); 48 49 public Integer getParentId(); 50 public void setParentId(Integer i); 51 52 public CategoryVO getValueObject(); 53 public void setValueObject(CategoryVO c); 54 } 55 | Popular Tags |