1
14
15 package com.liferay.portlet.messageboards.model;
16
17
18
34 public class MBThreadWrapper implements MBThread {
35 public MBThreadWrapper(MBThread mbThread) {
36 _mbThread = mbThread;
37 }
38
39 public long getPrimaryKey() {
40 return _mbThread.getPrimaryKey();
41 }
42
43 public void setPrimaryKey(long pk) {
44 _mbThread.setPrimaryKey(pk);
45 }
46
47 public long getThreadId() {
48 return _mbThread.getThreadId();
49 }
50
51 public void setThreadId(long threadId) {
52 _mbThread.setThreadId(threadId);
53 }
54
55 public long getGroupId() {
56 return _mbThread.getGroupId();
57 }
58
59 public void setGroupId(long groupId) {
60 _mbThread.setGroupId(groupId);
61 }
62
63 public long getCategoryId() {
64 return _mbThread.getCategoryId();
65 }
66
67 public void setCategoryId(long categoryId) {
68 _mbThread.setCategoryId(categoryId);
69 }
70
71 public long getRootMessageId() {
72 return _mbThread.getRootMessageId();
73 }
74
75 public void setRootMessageId(long rootMessageId) {
76 _mbThread.setRootMessageId(rootMessageId);
77 }
78
79 public int getMessageCount() {
80 return _mbThread.getMessageCount();
81 }
82
83 public void setMessageCount(int messageCount) {
84 _mbThread.setMessageCount(messageCount);
85 }
86
87 public int getViewCount() {
88 return _mbThread.getViewCount();
89 }
90
91 public void setViewCount(int viewCount) {
92 _mbThread.setViewCount(viewCount);
93 }
94
95 public long getLastPostByUserId() {
96 return _mbThread.getLastPostByUserId();
97 }
98
99 public void setLastPostByUserId(long lastPostByUserId) {
100 _mbThread.setLastPostByUserId(lastPostByUserId);
101 }
102
103 public java.lang.String getLastPostByUserUuid()
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return _mbThread.getLastPostByUserUuid();
106 }
107
108 public void setLastPostByUserUuid(java.lang.String lastPostByUserUuid) {
109 _mbThread.setLastPostByUserUuid(lastPostByUserUuid);
110 }
111
112 public java.util.Date getLastPostDate() {
113 return _mbThread.getLastPostDate();
114 }
115
116 public void setLastPostDate(java.util.Date lastPostDate) {
117 _mbThread.setLastPostDate(lastPostDate);
118 }
119
120 public double getPriority() {
121 return _mbThread.getPriority();
122 }
123
124 public void setPriority(double priority) {
125 _mbThread.setPriority(priority);
126 }
127
128 public int getStatus() {
129 return _mbThread.getStatus();
130 }
131
132 public void setStatus(int status) {
133 _mbThread.setStatus(status);
134 }
135
136 public long getStatusByUserId() {
137 return _mbThread.getStatusByUserId();
138 }
139
140 public void setStatusByUserId(long statusByUserId) {
141 _mbThread.setStatusByUserId(statusByUserId);
142 }
143
144 public java.lang.String getStatusByUserUuid()
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _mbThread.getStatusByUserUuid();
147 }
148
149 public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
150 _mbThread.setStatusByUserUuid(statusByUserUuid);
151 }
152
153 public java.lang.String getStatusByUserName() {
154 return _mbThread.getStatusByUserName();
155 }
156
157 public void setStatusByUserName(java.lang.String statusByUserName) {
158 _mbThread.setStatusByUserName(statusByUserName);
159 }
160
161 public java.util.Date getStatusDate() {
162 return _mbThread.getStatusDate();
163 }
164
165 public void setStatusDate(java.util.Date statusDate) {
166 _mbThread.setStatusDate(statusDate);
167 }
168
169 public boolean isApproved() {
170 return _mbThread.isApproved();
171 }
172
173 public boolean isDraft() {
174 return _mbThread.isDraft();
175 }
176
177 public boolean isExpired() {
178 return _mbThread.isExpired();
179 }
180
181 public boolean isPending() {
182 return _mbThread.isPending();
183 }
184
185 public com.liferay.portlet.messageboards.model.MBThread toEscapedModel() {
186 return _mbThread.toEscapedModel();
187 }
188
189 public boolean isNew() {
190 return _mbThread.isNew();
191 }
192
193 public boolean setNew(boolean n) {
194 return _mbThread.setNew(n);
195 }
196
197 public boolean isCachedModel() {
198 return _mbThread.isCachedModel();
199 }
200
201 public void setCachedModel(boolean cachedModel) {
202 _mbThread.setCachedModel(cachedModel);
203 }
204
205 public boolean isEscapedModel() {
206 return _mbThread.isEscapedModel();
207 }
208
209 public void setEscapedModel(boolean escapedModel) {
210 _mbThread.setEscapedModel(escapedModel);
211 }
212
213 public java.io.Serializable getPrimaryKeyObj() {
214 return _mbThread.getPrimaryKeyObj();
215 }
216
217 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
218 return _mbThread.getExpandoBridge();
219 }
220
221 public void setExpandoBridgeAttributes(
222 com.liferay.portal.service.ServiceContext serviceContext) {
223 _mbThread.setExpandoBridgeAttributes(serviceContext);
224 }
225
226 public java.lang.Object clone() {
227 return _mbThread.clone();
228 }
229
230 public int compareTo(
231 com.liferay.portlet.messageboards.model.MBThread mbThread) {
232 return _mbThread.compareTo(mbThread);
233 }
234
235 public int hashCode() {
236 return _mbThread.hashCode();
237 }
238
239 public java.lang.String toString() {
240 return _mbThread.toString();
241 }
242
243 public java.lang.String toXmlString() {
244 return _mbThread.toXmlString();
245 }
246
247 public java.lang.String getAttachmentsDir() {
248 return _mbThread.getAttachmentsDir();
249 }
250
251 public com.liferay.portal.model.Lock getLock() {
252 return _mbThread.getLock();
253 }
254
255 public boolean hasLock(long userId) {
256 return _mbThread.hasLock(userId);
257 }
258
259 public boolean isLocked() {
260 return _mbThread.isLocked();
261 }
262
263 public MBThread getWrappedMBThread() {
264 return _mbThread;
265 }
266
267 private MBThread _mbThread;
268 }