001
014
015 package com.liferay.portlet.bookmarks.model;
016
017
026 public class BookmarksEntryWrapper implements BookmarksEntry {
027 public BookmarksEntryWrapper(BookmarksEntry bookmarksEntry) {
028 _bookmarksEntry = bookmarksEntry;
029 }
030
031
036 public long getPrimaryKey() {
037 return _bookmarksEntry.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _bookmarksEntry.setPrimaryKey(pk);
047 }
048
049
054 public java.lang.String getUuid() {
055 return _bookmarksEntry.getUuid();
056 }
057
058
063 public void setUuid(java.lang.String uuid) {
064 _bookmarksEntry.setUuid(uuid);
065 }
066
067
072 public long getEntryId() {
073 return _bookmarksEntry.getEntryId();
074 }
075
076
081 public void setEntryId(long entryId) {
082 _bookmarksEntry.setEntryId(entryId);
083 }
084
085
090 public long getGroupId() {
091 return _bookmarksEntry.getGroupId();
092 }
093
094
099 public void setGroupId(long groupId) {
100 _bookmarksEntry.setGroupId(groupId);
101 }
102
103
108 public long getCompanyId() {
109 return _bookmarksEntry.getCompanyId();
110 }
111
112
117 public void setCompanyId(long companyId) {
118 _bookmarksEntry.setCompanyId(companyId);
119 }
120
121
126 public long getUserId() {
127 return _bookmarksEntry.getUserId();
128 }
129
130
135 public void setUserId(long userId) {
136 _bookmarksEntry.setUserId(userId);
137 }
138
139
145 public java.lang.String getUserUuid()
146 throws com.liferay.portal.kernel.exception.SystemException {
147 return _bookmarksEntry.getUserUuid();
148 }
149
150
155 public void setUserUuid(java.lang.String userUuid) {
156 _bookmarksEntry.setUserUuid(userUuid);
157 }
158
159
164 public java.util.Date getCreateDate() {
165 return _bookmarksEntry.getCreateDate();
166 }
167
168
173 public void setCreateDate(java.util.Date createDate) {
174 _bookmarksEntry.setCreateDate(createDate);
175 }
176
177
182 public java.util.Date getModifiedDate() {
183 return _bookmarksEntry.getModifiedDate();
184 }
185
186
191 public void setModifiedDate(java.util.Date modifiedDate) {
192 _bookmarksEntry.setModifiedDate(modifiedDate);
193 }
194
195
200 public long getFolderId() {
201 return _bookmarksEntry.getFolderId();
202 }
203
204
209 public void setFolderId(long folderId) {
210 _bookmarksEntry.setFolderId(folderId);
211 }
212
213
218 public java.lang.String getName() {
219 return _bookmarksEntry.getName();
220 }
221
222
227 public void setName(java.lang.String name) {
228 _bookmarksEntry.setName(name);
229 }
230
231
236 public java.lang.String getUrl() {
237 return _bookmarksEntry.getUrl();
238 }
239
240
245 public void setUrl(java.lang.String url) {
246 _bookmarksEntry.setUrl(url);
247 }
248
249
254 public java.lang.String getComments() {
255 return _bookmarksEntry.getComments();
256 }
257
258
263 public void setComments(java.lang.String comments) {
264 _bookmarksEntry.setComments(comments);
265 }
266
267
272 public int getVisits() {
273 return _bookmarksEntry.getVisits();
274 }
275
276
281 public void setVisits(int visits) {
282 _bookmarksEntry.setVisits(visits);
283 }
284
285
290 public int getPriority() {
291 return _bookmarksEntry.getPriority();
292 }
293
294
299 public void setPriority(int priority) {
300 _bookmarksEntry.setPriority(priority);
301 }
302
303 public boolean isNew() {
304 return _bookmarksEntry.isNew();
305 }
306
307 public void setNew(boolean n) {
308 _bookmarksEntry.setNew(n);
309 }
310
311 public boolean isCachedModel() {
312 return _bookmarksEntry.isCachedModel();
313 }
314
315 public void setCachedModel(boolean cachedModel) {
316 _bookmarksEntry.setCachedModel(cachedModel);
317 }
318
319 public boolean isEscapedModel() {
320 return _bookmarksEntry.isEscapedModel();
321 }
322
323 public void setEscapedModel(boolean escapedModel) {
324 _bookmarksEntry.setEscapedModel(escapedModel);
325 }
326
327 public java.io.Serializable getPrimaryKeyObj() {
328 return _bookmarksEntry.getPrimaryKeyObj();
329 }
330
331 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
332 return _bookmarksEntry.getExpandoBridge();
333 }
334
335 public void setExpandoBridgeAttributes(
336 com.liferay.portal.service.ServiceContext serviceContext) {
337 _bookmarksEntry.setExpandoBridgeAttributes(serviceContext);
338 }
339
340 public java.lang.Object clone() {
341 return _bookmarksEntry.clone();
342 }
343
344 public int compareTo(
345 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry) {
346 return _bookmarksEntry.compareTo(bookmarksEntry);
347 }
348
349 public int hashCode() {
350 return _bookmarksEntry.hashCode();
351 }
352
353 public com.liferay.portlet.bookmarks.model.BookmarksEntry toEscapedModel() {
354 return _bookmarksEntry.toEscapedModel();
355 }
356
357 public java.lang.String toString() {
358 return _bookmarksEntry.toString();
359 }
360
361 public java.lang.String toXmlString() {
362 return _bookmarksEntry.toXmlString();
363 }
364
365 public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder() {
366 return _bookmarksEntry.getFolder();
367 }
368
369 public BookmarksEntry getWrappedBookmarksEntry() {
370 return _bookmarksEntry;
371 }
372
373 private BookmarksEntry _bookmarksEntry;
374 }