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 public Class<?> getModelClass() {
032 return MBCategory.class;
033 }
034
035 public String getModelClassName() {
036 return MBCategory.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _mbCategory.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _mbCategory.setPrimaryKey(primaryKey);
055 }
056
057
062 public java.lang.String getUuid() {
063 return _mbCategory.getUuid();
064 }
065
066
071 public void setUuid(java.lang.String uuid) {
072 _mbCategory.setUuid(uuid);
073 }
074
075
080 public long getCategoryId() {
081 return _mbCategory.getCategoryId();
082 }
083
084
089 public void setCategoryId(long categoryId) {
090 _mbCategory.setCategoryId(categoryId);
091 }
092
093
098 public long getGroupId() {
099 return _mbCategory.getGroupId();
100 }
101
102
107 public void setGroupId(long groupId) {
108 _mbCategory.setGroupId(groupId);
109 }
110
111
116 public long getCompanyId() {
117 return _mbCategory.getCompanyId();
118 }
119
120
125 public void setCompanyId(long companyId) {
126 _mbCategory.setCompanyId(companyId);
127 }
128
129
134 public long getUserId() {
135 return _mbCategory.getUserId();
136 }
137
138
143 public void setUserId(long userId) {
144 _mbCategory.setUserId(userId);
145 }
146
147
153 public java.lang.String getUserUuid()
154 throws com.liferay.portal.kernel.exception.SystemException {
155 return _mbCategory.getUserUuid();
156 }
157
158
163 public void setUserUuid(java.lang.String userUuid) {
164 _mbCategory.setUserUuid(userUuid);
165 }
166
167
172 public java.lang.String getUserName() {
173 return _mbCategory.getUserName();
174 }
175
176
181 public void setUserName(java.lang.String userName) {
182 _mbCategory.setUserName(userName);
183 }
184
185
190 public java.util.Date getCreateDate() {
191 return _mbCategory.getCreateDate();
192 }
193
194
199 public void setCreateDate(java.util.Date createDate) {
200 _mbCategory.setCreateDate(createDate);
201 }
202
203
208 public java.util.Date getModifiedDate() {
209 return _mbCategory.getModifiedDate();
210 }
211
212
217 public void setModifiedDate(java.util.Date modifiedDate) {
218 _mbCategory.setModifiedDate(modifiedDate);
219 }
220
221
226 public long getParentCategoryId() {
227 return _mbCategory.getParentCategoryId();
228 }
229
230
235 public void setParentCategoryId(long parentCategoryId) {
236 _mbCategory.setParentCategoryId(parentCategoryId);
237 }
238
239
244 public java.lang.String getName() {
245 return _mbCategory.getName();
246 }
247
248
253 public void setName(java.lang.String name) {
254 _mbCategory.setName(name);
255 }
256
257
262 public java.lang.String getDescription() {
263 return _mbCategory.getDescription();
264 }
265
266
271 public void setDescription(java.lang.String description) {
272 _mbCategory.setDescription(description);
273 }
274
275
280 public java.lang.String getDisplayStyle() {
281 return _mbCategory.getDisplayStyle();
282 }
283
284
289 public void setDisplayStyle(java.lang.String displayStyle) {
290 _mbCategory.setDisplayStyle(displayStyle);
291 }
292
293
298 public int getThreadCount() {
299 return _mbCategory.getThreadCount();
300 }
301
302
307 public void setThreadCount(int threadCount) {
308 _mbCategory.setThreadCount(threadCount);
309 }
310
311
316 public int getMessageCount() {
317 return _mbCategory.getMessageCount();
318 }
319
320
325 public void setMessageCount(int messageCount) {
326 _mbCategory.setMessageCount(messageCount);
327 }
328
329
334 public java.util.Date getLastPostDate() {
335 return _mbCategory.getLastPostDate();
336 }
337
338
343 public void setLastPostDate(java.util.Date lastPostDate) {
344 _mbCategory.setLastPostDate(lastPostDate);
345 }
346
347 public boolean isNew() {
348 return _mbCategory.isNew();
349 }
350
351 public void setNew(boolean n) {
352 _mbCategory.setNew(n);
353 }
354
355 public boolean isCachedModel() {
356 return _mbCategory.isCachedModel();
357 }
358
359 public void setCachedModel(boolean cachedModel) {
360 _mbCategory.setCachedModel(cachedModel);
361 }
362
363 public boolean isEscapedModel() {
364 return _mbCategory.isEscapedModel();
365 }
366
367 public java.io.Serializable getPrimaryKeyObj() {
368 return _mbCategory.getPrimaryKeyObj();
369 }
370
371 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
372 _mbCategory.setPrimaryKeyObj(primaryKeyObj);
373 }
374
375 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
376 return _mbCategory.getExpandoBridge();
377 }
378
379 public void setExpandoBridgeAttributes(
380 com.liferay.portal.service.ServiceContext serviceContext) {
381 _mbCategory.setExpandoBridgeAttributes(serviceContext);
382 }
383
384 @Override
385 public java.lang.Object clone() {
386 return new MBCategoryWrapper((MBCategory)_mbCategory.clone());
387 }
388
389 public int compareTo(
390 com.liferay.portlet.messageboards.model.MBCategory mbCategory) {
391 return _mbCategory.compareTo(mbCategory);
392 }
393
394 @Override
395 public int hashCode() {
396 return _mbCategory.hashCode();
397 }
398
399 public com.liferay.portal.model.CacheModel<com.liferay.portlet.messageboards.model.MBCategory> toCacheModel() {
400 return _mbCategory.toCacheModel();
401 }
402
403 public com.liferay.portlet.messageboards.model.MBCategory toEscapedModel() {
404 return new MBCategoryWrapper(_mbCategory.toEscapedModel());
405 }
406
407 @Override
408 public java.lang.String toString() {
409 return _mbCategory.toString();
410 }
411
412 public java.lang.String toXmlString() {
413 return _mbCategory.toXmlString();
414 }
415
416 public void persist()
417 throws com.liferay.portal.kernel.exception.SystemException {
418 _mbCategory.persist();
419 }
420
421 public java.util.List<java.lang.Long> getAncestorCategoryIds()
422 throws com.liferay.portal.kernel.exception.PortalException,
423 com.liferay.portal.kernel.exception.SystemException {
424 return _mbCategory.getAncestorCategoryIds();
425 }
426
427 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> getAncestors()
428 throws com.liferay.portal.kernel.exception.PortalException,
429 com.liferay.portal.kernel.exception.SystemException {
430 return _mbCategory.getAncestors();
431 }
432
433 public boolean isRoot() {
434 return _mbCategory.isRoot();
435 }
436
437 public MBCategory getWrappedMBCategory() {
438 return _mbCategory;
439 }
440
441 public void resetOriginalValues() {
442 _mbCategory.resetOriginalValues();
443 }
444
445 private MBCategory _mbCategory;
446 }