001
014
015 package com.liferay.portlet.messageboards.model;
016
017
026 public class MBCategoryWrapper implements MBCategory {
027 public MBCategoryWrapper(MBCategory mbCategory) {
028 _mbCategory = mbCategory;
029 }
030
031
036 public long getPrimaryKey() {
037 return _mbCategory.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _mbCategory.setPrimaryKey(pk);
047 }
048
049
054 public java.lang.String getUuid() {
055 return _mbCategory.getUuid();
056 }
057
058
063 public void setUuid(java.lang.String uuid) {
064 _mbCategory.setUuid(uuid);
065 }
066
067
072 public long getCategoryId() {
073 return _mbCategory.getCategoryId();
074 }
075
076
081 public void setCategoryId(long categoryId) {
082 _mbCategory.setCategoryId(categoryId);
083 }
084
085
090 public long getGroupId() {
091 return _mbCategory.getGroupId();
092 }
093
094
099 public void setGroupId(long groupId) {
100 _mbCategory.setGroupId(groupId);
101 }
102
103
108 public long getCompanyId() {
109 return _mbCategory.getCompanyId();
110 }
111
112
117 public void setCompanyId(long companyId) {
118 _mbCategory.setCompanyId(companyId);
119 }
120
121
126 public long getUserId() {
127 return _mbCategory.getUserId();
128 }
129
130
135 public void setUserId(long userId) {
136 _mbCategory.setUserId(userId);
137 }
138
139
145 public java.lang.String getUserUuid()
146 throws com.liferay.portal.kernel.exception.SystemException {
147 return _mbCategory.getUserUuid();
148 }
149
150
155 public void setUserUuid(java.lang.String userUuid) {
156 _mbCategory.setUserUuid(userUuid);
157 }
158
159
164 public java.lang.String getUserName() {
165 return _mbCategory.getUserName();
166 }
167
168
173 public void setUserName(java.lang.String userName) {
174 _mbCategory.setUserName(userName);
175 }
176
177
182 public java.util.Date getCreateDate() {
183 return _mbCategory.getCreateDate();
184 }
185
186
191 public void setCreateDate(java.util.Date createDate) {
192 _mbCategory.setCreateDate(createDate);
193 }
194
195
200 public java.util.Date getModifiedDate() {
201 return _mbCategory.getModifiedDate();
202 }
203
204
209 public void setModifiedDate(java.util.Date modifiedDate) {
210 _mbCategory.setModifiedDate(modifiedDate);
211 }
212
213
218 public long getParentCategoryId() {
219 return _mbCategory.getParentCategoryId();
220 }
221
222
227 public void setParentCategoryId(long parentCategoryId) {
228 _mbCategory.setParentCategoryId(parentCategoryId);
229 }
230
231
236 public java.lang.String getName() {
237 return _mbCategory.getName();
238 }
239
240
245 public void setName(java.lang.String name) {
246 _mbCategory.setName(name);
247 }
248
249
254 public java.lang.String getDescription() {
255 return _mbCategory.getDescription();
256 }
257
258
263 public void setDescription(java.lang.String description) {
264 _mbCategory.setDescription(description);
265 }
266
267
272 public int getThreadCount() {
273 return _mbCategory.getThreadCount();
274 }
275
276
281 public void setThreadCount(int threadCount) {
282 _mbCategory.setThreadCount(threadCount);
283 }
284
285
290 public int getMessageCount() {
291 return _mbCategory.getMessageCount();
292 }
293
294
299 public void setMessageCount(int messageCount) {
300 _mbCategory.setMessageCount(messageCount);
301 }
302
303
308 public java.util.Date getLastPostDate() {
309 return _mbCategory.getLastPostDate();
310 }
311
312
317 public void setLastPostDate(java.util.Date lastPostDate) {
318 _mbCategory.setLastPostDate(lastPostDate);
319 }
320
321 public boolean isNew() {
322 return _mbCategory.isNew();
323 }
324
325 public void setNew(boolean n) {
326 _mbCategory.setNew(n);
327 }
328
329 public boolean isCachedModel() {
330 return _mbCategory.isCachedModel();
331 }
332
333 public void setCachedModel(boolean cachedModel) {
334 _mbCategory.setCachedModel(cachedModel);
335 }
336
337 public boolean isEscapedModel() {
338 return _mbCategory.isEscapedModel();
339 }
340
341 public void setEscapedModel(boolean escapedModel) {
342 _mbCategory.setEscapedModel(escapedModel);
343 }
344
345 public java.io.Serializable getPrimaryKeyObj() {
346 return _mbCategory.getPrimaryKeyObj();
347 }
348
349 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
350 return _mbCategory.getExpandoBridge();
351 }
352
353 public void setExpandoBridgeAttributes(
354 com.liferay.portal.service.ServiceContext serviceContext) {
355 _mbCategory.setExpandoBridgeAttributes(serviceContext);
356 }
357
358 public java.lang.Object clone() {
359 return _mbCategory.clone();
360 }
361
362 public int compareTo(
363 com.liferay.portlet.messageboards.model.MBCategory mbCategory) {
364 return _mbCategory.compareTo(mbCategory);
365 }
366
367 public int hashCode() {
368 return _mbCategory.hashCode();
369 }
370
371 public com.liferay.portlet.messageboards.model.MBCategory toEscapedModel() {
372 return _mbCategory.toEscapedModel();
373 }
374
375 public java.lang.String toString() {
376 return _mbCategory.toString();
377 }
378
379 public java.lang.String toXmlString() {
380 return _mbCategory.toXmlString();
381 }
382
383 public java.util.List<java.lang.Long> getAncestorCategoryIds()
384 throws com.liferay.portal.kernel.exception.PortalException,
385 com.liferay.portal.kernel.exception.SystemException {
386 return _mbCategory.getAncestorCategoryIds();
387 }
388
389 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> getAncestors()
390 throws com.liferay.portal.kernel.exception.PortalException,
391 com.liferay.portal.kernel.exception.SystemException {
392 return _mbCategory.getAncestors();
393 }
394
395 public boolean isRoot() {
396 return _mbCategory.isRoot();
397 }
398
399 public MBCategory getWrappedMBCategory() {
400 return _mbCategory;
401 }
402
403 private MBCategory _mbCategory;
404 }