1 23 24 package org.infoglue.cms.entities.structure.impl.simple; 25 26 import org.infoglue.cms.entities.kernel.BaseEntityVO; 27 import org.infoglue.cms.entities.structure.SiteNodeVO; 28 29 public class SmallSiteNodeImpl extends SiteNodeImpl 30 { 31 private SiteNodeVO valueObject = new SiteNodeVO(); 32 38 41 public BaseEntityVO getVO() 42 { 43 return (BaseEntityVO) getValueObject(); 44 } 45 46 49 public void setVO(BaseEntityVO valueObject) 50 { 51 setValueObject((SiteNodeVO) valueObject); 52 } 53 54 57 public Integer getId() 58 { 59 return getSiteNodeId(); 60 } 61 62 public Object getIdAsObject() 63 { 64 return getId(); 65 } 66 67 public SiteNodeVO getValueObject() 68 { 69 return this.valueObject; 70 } 71 72 public void setValueObject(SiteNodeVO valueObject) 73 { 74 this.valueObject = valueObject; 75 } 76 77 public java.lang.Integer getSiteNodeId() 78 { 79 return this.valueObject.getSiteNodeId(); 80 } 81 82 public void setSiteNodeId(java.lang.Integer siteNodeId) 83 { 84 this.valueObject.setSiteNodeId(siteNodeId); 85 } 86 87 public java.lang.String getName() 88 { 89 return this.valueObject.getName(); 90 } 91 92 public void setName(java.lang.String name) 93 { 94 this.valueObject.setName(name); 95 } 96 97 public java.lang.Boolean getIsBranch() 98 { 99 return this.valueObject.getIsBranch(); 100 } 101 102 public void setIsBranch(java.lang.Boolean isBranch) 103 { 104 this.valueObject.setIsBranch(isBranch); 105 } 106 107 public java.util.Date getPublishDateTime() 108 { 109 return this.valueObject.getPublishDateTime(); 110 } 111 112 public void setPublishDateTime(java.util.Date publishDateTime) 113 { 114 this.valueObject.setPublishDateTime(publishDateTime); 115 } 116 117 public java.util.Date getExpireDateTime() 118 { 119 return this.valueObject.getExpireDateTime(); 120 } 121 122 public void setExpireDateTime(java.util.Date expireDateTime) 123 { 124 this.valueObject.setExpireDateTime(expireDateTime); 125 } 126 127 public Integer getMetaInfoContentId() 128 { 129 return this.valueObject.getMetaInfoContentId(); 130 } 131 132 public void setMetaInfoContentId(Integer metaInfoContentId) 133 { 134 this.valueObject.setMetaInfoContentId(metaInfoContentId); 135 } 136 137 169 170 public String getCreator() 171 { 172 return this.valueObject.getCreatorName(); 173 } 174 175 public void setCreator(String creator) 176 { 177 this.valueObject.setCreatorName(creator); 178 } 179 203 204 208 public Integer getChildCount() 209 { 210 return this.valueObject.getChildCount(); 211 } 212 213 217 public void setChildCount(Integer childCount) 218 { 219 this.valueObject.setChildCount(childCount); 220 } 221 222 public void setParentContentId(Integer parentSiteNodeId) 223 { 224 this.valueObject.setParentSiteNodeId(parentSiteNodeId); 225 } 226 227 public Integer getParentSiteNodeId() 228 { 229 return this.valueObject.getParentSiteNodeId(); 230 } 231 232 } 233 | Popular Tags |