001
014
015 package com.liferay.portlet.blogs.model;
016
017
026 public class BlogsEntryWrapper implements BlogsEntry {
027 public BlogsEntryWrapper(BlogsEntry blogsEntry) {
028 _blogsEntry = blogsEntry;
029 }
030
031 public Class<?> getModelClass() {
032 return BlogsEntry.class;
033 }
034
035 public String getModelClassName() {
036 return BlogsEntry.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _blogsEntry.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _blogsEntry.setPrimaryKey(primaryKey);
055 }
056
057
062 public java.lang.String getUuid() {
063 return _blogsEntry.getUuid();
064 }
065
066
071 public void setUuid(java.lang.String uuid) {
072 _blogsEntry.setUuid(uuid);
073 }
074
075
080 public long getEntryId() {
081 return _blogsEntry.getEntryId();
082 }
083
084
089 public void setEntryId(long entryId) {
090 _blogsEntry.setEntryId(entryId);
091 }
092
093
098 public long getGroupId() {
099 return _blogsEntry.getGroupId();
100 }
101
102
107 public void setGroupId(long groupId) {
108 _blogsEntry.setGroupId(groupId);
109 }
110
111
116 public long getCompanyId() {
117 return _blogsEntry.getCompanyId();
118 }
119
120
125 public void setCompanyId(long companyId) {
126 _blogsEntry.setCompanyId(companyId);
127 }
128
129
134 public long getUserId() {
135 return _blogsEntry.getUserId();
136 }
137
138
143 public void setUserId(long userId) {
144 _blogsEntry.setUserId(userId);
145 }
146
147
153 public java.lang.String getUserUuid()
154 throws com.liferay.portal.kernel.exception.SystemException {
155 return _blogsEntry.getUserUuid();
156 }
157
158
163 public void setUserUuid(java.lang.String userUuid) {
164 _blogsEntry.setUserUuid(userUuid);
165 }
166
167
172 public java.lang.String getUserName() {
173 return _blogsEntry.getUserName();
174 }
175
176
181 public void setUserName(java.lang.String userName) {
182 _blogsEntry.setUserName(userName);
183 }
184
185
190 public java.util.Date getCreateDate() {
191 return _blogsEntry.getCreateDate();
192 }
193
194
199 public void setCreateDate(java.util.Date createDate) {
200 _blogsEntry.setCreateDate(createDate);
201 }
202
203
208 public java.util.Date getModifiedDate() {
209 return _blogsEntry.getModifiedDate();
210 }
211
212
217 public void setModifiedDate(java.util.Date modifiedDate) {
218 _blogsEntry.setModifiedDate(modifiedDate);
219 }
220
221
226 public java.lang.String getTitle() {
227 return _blogsEntry.getTitle();
228 }
229
230
235 public void setTitle(java.lang.String title) {
236 _blogsEntry.setTitle(title);
237 }
238
239
244 public java.lang.String getUrlTitle() {
245 return _blogsEntry.getUrlTitle();
246 }
247
248
253 public void setUrlTitle(java.lang.String urlTitle) {
254 _blogsEntry.setUrlTitle(urlTitle);
255 }
256
257
262 public java.lang.String getDescription() {
263 return _blogsEntry.getDescription();
264 }
265
266
271 public void setDescription(java.lang.String description) {
272 _blogsEntry.setDescription(description);
273 }
274
275
280 public java.lang.String getContent() {
281 return _blogsEntry.getContent();
282 }
283
284
289 public void setContent(java.lang.String content) {
290 _blogsEntry.setContent(content);
291 }
292
293
298 public java.util.Date getDisplayDate() {
299 return _blogsEntry.getDisplayDate();
300 }
301
302
307 public void setDisplayDate(java.util.Date displayDate) {
308 _blogsEntry.setDisplayDate(displayDate);
309 }
310
311
316 public boolean getAllowPingbacks() {
317 return _blogsEntry.getAllowPingbacks();
318 }
319
320
325 public boolean isAllowPingbacks() {
326 return _blogsEntry.isAllowPingbacks();
327 }
328
329
334 public void setAllowPingbacks(boolean allowPingbacks) {
335 _blogsEntry.setAllowPingbacks(allowPingbacks);
336 }
337
338
343 public boolean getAllowTrackbacks() {
344 return _blogsEntry.getAllowTrackbacks();
345 }
346
347
352 public boolean isAllowTrackbacks() {
353 return _blogsEntry.isAllowTrackbacks();
354 }
355
356
361 public void setAllowTrackbacks(boolean allowTrackbacks) {
362 _blogsEntry.setAllowTrackbacks(allowTrackbacks);
363 }
364
365
370 public java.lang.String getTrackbacks() {
371 return _blogsEntry.getTrackbacks();
372 }
373
374
379 public void setTrackbacks(java.lang.String trackbacks) {
380 _blogsEntry.setTrackbacks(trackbacks);
381 }
382
383
388 public boolean getSmallImage() {
389 return _blogsEntry.getSmallImage();
390 }
391
392
397 public boolean isSmallImage() {
398 return _blogsEntry.isSmallImage();
399 }
400
401
406 public void setSmallImage(boolean smallImage) {
407 _blogsEntry.setSmallImage(smallImage);
408 }
409
410
415 public long getSmallImageId() {
416 return _blogsEntry.getSmallImageId();
417 }
418
419
424 public void setSmallImageId(long smallImageId) {
425 _blogsEntry.setSmallImageId(smallImageId);
426 }
427
428
433 public java.lang.String getSmallImageURL() {
434 return _blogsEntry.getSmallImageURL();
435 }
436
437
442 public void setSmallImageURL(java.lang.String smallImageURL) {
443 _blogsEntry.setSmallImageURL(smallImageURL);
444 }
445
446
451 public int getStatus() {
452 return _blogsEntry.getStatus();
453 }
454
455
460 public void setStatus(int status) {
461 _blogsEntry.setStatus(status);
462 }
463
464
469 public long getStatusByUserId() {
470 return _blogsEntry.getStatusByUserId();
471 }
472
473
478 public void setStatusByUserId(long statusByUserId) {
479 _blogsEntry.setStatusByUserId(statusByUserId);
480 }
481
482
488 public java.lang.String getStatusByUserUuid()
489 throws com.liferay.portal.kernel.exception.SystemException {
490 return _blogsEntry.getStatusByUserUuid();
491 }
492
493
498 public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
499 _blogsEntry.setStatusByUserUuid(statusByUserUuid);
500 }
501
502
507 public java.lang.String getStatusByUserName() {
508 return _blogsEntry.getStatusByUserName();
509 }
510
511
516 public void setStatusByUserName(java.lang.String statusByUserName) {
517 _blogsEntry.setStatusByUserName(statusByUserName);
518 }
519
520
525 public java.util.Date getStatusDate() {
526 return _blogsEntry.getStatusDate();
527 }
528
529
534 public void setStatusDate(java.util.Date statusDate) {
535 _blogsEntry.setStatusDate(statusDate);
536 }
537
538
541 public boolean getApproved() {
542 return _blogsEntry.getApproved();
543 }
544
545
550 public boolean isApproved() {
551 return _blogsEntry.isApproved();
552 }
553
554
559 public boolean isDraft() {
560 return _blogsEntry.isDraft();
561 }
562
563
568 public boolean isExpired() {
569 return _blogsEntry.isExpired();
570 }
571
572
577 public boolean isPending() {
578 return _blogsEntry.isPending();
579 }
580
581 public boolean isNew() {
582 return _blogsEntry.isNew();
583 }
584
585 public void setNew(boolean n) {
586 _blogsEntry.setNew(n);
587 }
588
589 public boolean isCachedModel() {
590 return _blogsEntry.isCachedModel();
591 }
592
593 public void setCachedModel(boolean cachedModel) {
594 _blogsEntry.setCachedModel(cachedModel);
595 }
596
597 public boolean isEscapedModel() {
598 return _blogsEntry.isEscapedModel();
599 }
600
601 public java.io.Serializable getPrimaryKeyObj() {
602 return _blogsEntry.getPrimaryKeyObj();
603 }
604
605 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
606 _blogsEntry.setPrimaryKeyObj(primaryKeyObj);
607 }
608
609 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
610 return _blogsEntry.getExpandoBridge();
611 }
612
613 public void setExpandoBridgeAttributes(
614 com.liferay.portal.service.ServiceContext serviceContext) {
615 _blogsEntry.setExpandoBridgeAttributes(serviceContext);
616 }
617
618 @Override
619 public java.lang.Object clone() {
620 return new BlogsEntryWrapper((BlogsEntry)_blogsEntry.clone());
621 }
622
623 public int compareTo(com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
624 return _blogsEntry.compareTo(blogsEntry);
625 }
626
627 @Override
628 public int hashCode() {
629 return _blogsEntry.hashCode();
630 }
631
632 public com.liferay.portal.model.CacheModel<com.liferay.portlet.blogs.model.BlogsEntry> toCacheModel() {
633 return _blogsEntry.toCacheModel();
634 }
635
636 public com.liferay.portlet.blogs.model.BlogsEntry toEscapedModel() {
637 return new BlogsEntryWrapper(_blogsEntry.toEscapedModel());
638 }
639
640 @Override
641 public java.lang.String toString() {
642 return _blogsEntry.toString();
643 }
644
645 public java.lang.String toXmlString() {
646 return _blogsEntry.toXmlString();
647 }
648
649 public void persist()
650 throws com.liferay.portal.kernel.exception.SystemException {
651 _blogsEntry.persist();
652 }
653
654 public java.lang.String getSmallImageType()
655 throws com.liferay.portal.kernel.exception.PortalException,
656 com.liferay.portal.kernel.exception.SystemException {
657 return _blogsEntry.getSmallImageType();
658 }
659
660 public void setSmallImageType(java.lang.String smallImageType) {
661 _blogsEntry.setSmallImageType(smallImageType);
662 }
663
664 public BlogsEntry getWrappedBlogsEntry() {
665 return _blogsEntry;
666 }
667
668 public void resetOriginalValues() {
669 _blogsEntry.resetOriginalValues();
670 }
671
672 private BlogsEntry _blogsEntry;
673 }