001
014
015 package com.liferay.portlet.blogs.model;
016
017 import com.liferay.portal.model.ModelWrapper;
018
019
028 public class BlogsEntryWrapper implements BlogsEntry, ModelWrapper<BlogsEntry> {
029 public BlogsEntryWrapper(BlogsEntry blogsEntry) {
030 _blogsEntry = blogsEntry;
031 }
032
033 public Class<?> getModelClass() {
034 return BlogsEntry.class;
035 }
036
037 public String getModelClassName() {
038 return BlogsEntry.class.getName();
039 }
040
041
046 public long getPrimaryKey() {
047 return _blogsEntry.getPrimaryKey();
048 }
049
050
055 public void setPrimaryKey(long primaryKey) {
056 _blogsEntry.setPrimaryKey(primaryKey);
057 }
058
059
064 public java.lang.String getUuid() {
065 return _blogsEntry.getUuid();
066 }
067
068
073 public void setUuid(java.lang.String uuid) {
074 _blogsEntry.setUuid(uuid);
075 }
076
077
082 public long getEntryId() {
083 return _blogsEntry.getEntryId();
084 }
085
086
091 public void setEntryId(long entryId) {
092 _blogsEntry.setEntryId(entryId);
093 }
094
095
100 public long getGroupId() {
101 return _blogsEntry.getGroupId();
102 }
103
104
109 public void setGroupId(long groupId) {
110 _blogsEntry.setGroupId(groupId);
111 }
112
113
118 public long getCompanyId() {
119 return _blogsEntry.getCompanyId();
120 }
121
122
127 public void setCompanyId(long companyId) {
128 _blogsEntry.setCompanyId(companyId);
129 }
130
131
136 public long getUserId() {
137 return _blogsEntry.getUserId();
138 }
139
140
145 public void setUserId(long userId) {
146 _blogsEntry.setUserId(userId);
147 }
148
149
155 public java.lang.String getUserUuid()
156 throws com.liferay.portal.kernel.exception.SystemException {
157 return _blogsEntry.getUserUuid();
158 }
159
160
165 public void setUserUuid(java.lang.String userUuid) {
166 _blogsEntry.setUserUuid(userUuid);
167 }
168
169
174 public java.lang.String getUserName() {
175 return _blogsEntry.getUserName();
176 }
177
178
183 public void setUserName(java.lang.String userName) {
184 _blogsEntry.setUserName(userName);
185 }
186
187
192 public java.util.Date getCreateDate() {
193 return _blogsEntry.getCreateDate();
194 }
195
196
201 public void setCreateDate(java.util.Date createDate) {
202 _blogsEntry.setCreateDate(createDate);
203 }
204
205
210 public java.util.Date getModifiedDate() {
211 return _blogsEntry.getModifiedDate();
212 }
213
214
219 public void setModifiedDate(java.util.Date modifiedDate) {
220 _blogsEntry.setModifiedDate(modifiedDate);
221 }
222
223
228 public java.lang.String getTitle() {
229 return _blogsEntry.getTitle();
230 }
231
232
237 public void setTitle(java.lang.String title) {
238 _blogsEntry.setTitle(title);
239 }
240
241
246 public java.lang.String getUrlTitle() {
247 return _blogsEntry.getUrlTitle();
248 }
249
250
255 public void setUrlTitle(java.lang.String urlTitle) {
256 _blogsEntry.setUrlTitle(urlTitle);
257 }
258
259
264 public java.lang.String getDescription() {
265 return _blogsEntry.getDescription();
266 }
267
268
273 public void setDescription(java.lang.String description) {
274 _blogsEntry.setDescription(description);
275 }
276
277
282 public java.lang.String getContent() {
283 return _blogsEntry.getContent();
284 }
285
286
291 public void setContent(java.lang.String content) {
292 _blogsEntry.setContent(content);
293 }
294
295
300 public java.util.Date getDisplayDate() {
301 return _blogsEntry.getDisplayDate();
302 }
303
304
309 public void setDisplayDate(java.util.Date displayDate) {
310 _blogsEntry.setDisplayDate(displayDate);
311 }
312
313
318 public boolean getAllowPingbacks() {
319 return _blogsEntry.getAllowPingbacks();
320 }
321
322
327 public boolean isAllowPingbacks() {
328 return _blogsEntry.isAllowPingbacks();
329 }
330
331
336 public void setAllowPingbacks(boolean allowPingbacks) {
337 _blogsEntry.setAllowPingbacks(allowPingbacks);
338 }
339
340
345 public boolean getAllowTrackbacks() {
346 return _blogsEntry.getAllowTrackbacks();
347 }
348
349
354 public boolean isAllowTrackbacks() {
355 return _blogsEntry.isAllowTrackbacks();
356 }
357
358
363 public void setAllowTrackbacks(boolean allowTrackbacks) {
364 _blogsEntry.setAllowTrackbacks(allowTrackbacks);
365 }
366
367
372 public java.lang.String getTrackbacks() {
373 return _blogsEntry.getTrackbacks();
374 }
375
376
381 public void setTrackbacks(java.lang.String trackbacks) {
382 _blogsEntry.setTrackbacks(trackbacks);
383 }
384
385
390 public boolean getSmallImage() {
391 return _blogsEntry.getSmallImage();
392 }
393
394
399 public boolean isSmallImage() {
400 return _blogsEntry.isSmallImage();
401 }
402
403
408 public void setSmallImage(boolean smallImage) {
409 _blogsEntry.setSmallImage(smallImage);
410 }
411
412
417 public long getSmallImageId() {
418 return _blogsEntry.getSmallImageId();
419 }
420
421
426 public void setSmallImageId(long smallImageId) {
427 _blogsEntry.setSmallImageId(smallImageId);
428 }
429
430
435 public java.lang.String getSmallImageURL() {
436 return _blogsEntry.getSmallImageURL();
437 }
438
439
444 public void setSmallImageURL(java.lang.String smallImageURL) {
445 _blogsEntry.setSmallImageURL(smallImageURL);
446 }
447
448
453 public int getStatus() {
454 return _blogsEntry.getStatus();
455 }
456
457
462 public void setStatus(int status) {
463 _blogsEntry.setStatus(status);
464 }
465
466
471 public long getStatusByUserId() {
472 return _blogsEntry.getStatusByUserId();
473 }
474
475
480 public void setStatusByUserId(long statusByUserId) {
481 _blogsEntry.setStatusByUserId(statusByUserId);
482 }
483
484
490 public java.lang.String getStatusByUserUuid()
491 throws com.liferay.portal.kernel.exception.SystemException {
492 return _blogsEntry.getStatusByUserUuid();
493 }
494
495
500 public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
501 _blogsEntry.setStatusByUserUuid(statusByUserUuid);
502 }
503
504
509 public java.lang.String getStatusByUserName() {
510 return _blogsEntry.getStatusByUserName();
511 }
512
513
518 public void setStatusByUserName(java.lang.String statusByUserName) {
519 _blogsEntry.setStatusByUserName(statusByUserName);
520 }
521
522
527 public java.util.Date getStatusDate() {
528 return _blogsEntry.getStatusDate();
529 }
530
531
536 public void setStatusDate(java.util.Date statusDate) {
537 _blogsEntry.setStatusDate(statusDate);
538 }
539
540
543 public boolean getApproved() {
544 return _blogsEntry.getApproved();
545 }
546
547
552 public boolean isApproved() {
553 return _blogsEntry.isApproved();
554 }
555
556
561 public boolean isDraft() {
562 return _blogsEntry.isDraft();
563 }
564
565
570 public boolean isExpired() {
571 return _blogsEntry.isExpired();
572 }
573
574
579 public boolean isPending() {
580 return _blogsEntry.isPending();
581 }
582
583 public boolean isNew() {
584 return _blogsEntry.isNew();
585 }
586
587 public void setNew(boolean n) {
588 _blogsEntry.setNew(n);
589 }
590
591 public boolean isCachedModel() {
592 return _blogsEntry.isCachedModel();
593 }
594
595 public void setCachedModel(boolean cachedModel) {
596 _blogsEntry.setCachedModel(cachedModel);
597 }
598
599 public boolean isEscapedModel() {
600 return _blogsEntry.isEscapedModel();
601 }
602
603 public java.io.Serializable getPrimaryKeyObj() {
604 return _blogsEntry.getPrimaryKeyObj();
605 }
606
607 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
608 _blogsEntry.setPrimaryKeyObj(primaryKeyObj);
609 }
610
611 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
612 return _blogsEntry.getExpandoBridge();
613 }
614
615 public void setExpandoBridgeAttributes(
616 com.liferay.portal.service.ServiceContext serviceContext) {
617 _blogsEntry.setExpandoBridgeAttributes(serviceContext);
618 }
619
620 @Override
621 public java.lang.Object clone() {
622 return new BlogsEntryWrapper((BlogsEntry)_blogsEntry.clone());
623 }
624
625 public int compareTo(com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
626 return _blogsEntry.compareTo(blogsEntry);
627 }
628
629 @Override
630 public int hashCode() {
631 return _blogsEntry.hashCode();
632 }
633
634 public com.liferay.portal.model.CacheModel<com.liferay.portlet.blogs.model.BlogsEntry> toCacheModel() {
635 return _blogsEntry.toCacheModel();
636 }
637
638 public com.liferay.portlet.blogs.model.BlogsEntry toEscapedModel() {
639 return new BlogsEntryWrapper(_blogsEntry.toEscapedModel());
640 }
641
642 @Override
643 public java.lang.String toString() {
644 return _blogsEntry.toString();
645 }
646
647 public java.lang.String toXmlString() {
648 return _blogsEntry.toXmlString();
649 }
650
651 public void persist()
652 throws com.liferay.portal.kernel.exception.SystemException {
653 _blogsEntry.persist();
654 }
655
656 public java.lang.String getSmallImageType()
657 throws com.liferay.portal.kernel.exception.PortalException,
658 com.liferay.portal.kernel.exception.SystemException {
659 return _blogsEntry.getSmallImageType();
660 }
661
662 public boolean isVisible() {
663 return _blogsEntry.isVisible();
664 }
665
666 public void setSmallImageType(java.lang.String smallImageType) {
667 _blogsEntry.setSmallImageType(smallImageType);
668 }
669
670
673 public BlogsEntry getWrappedBlogsEntry() {
674 return _blogsEntry;
675 }
676
677 public BlogsEntry getWrappedModel() {
678 return _blogsEntry;
679 }
680
681 public void resetOriginalValues() {
682 _blogsEntry.resetOriginalValues();
683 }
684
685 private BlogsEntry _blogsEntry;
686 }