1 24 package org.infoglue.cms.entities.management; 25 26 import org.infoglue.cms.entities.kernel.IBaseEntity; 27 import org.infoglue.cms.entities.management.impl.simple.CategoryImpl; 28 29 34 public interface PropertiesCategory extends IBaseEntity 35 { 36 public PropertiesCategoryVO getValueObject(); 37 public void setValueObject(PropertiesCategoryVO valueObject); 38 39 public Integer getPropertiesCategoryId(); 40 public void setPropertiesCategoryId(Integer i); 41 42 public String getAttributeName(); 43 public void setAttributeName(String s); 44 45 public String getEntityName(); 46 public void setEntityName(String s); 47 48 public Integer getEntityId(); 49 public void setEntityId(Integer i); 50 51 public CategoryImpl getCategory(); 52 public void setCategory(CategoryImpl c); 53 } 54 55 | Popular Tags |