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 public long getPrimaryKey() {
032 return _bookmarksEntry.getPrimaryKey();
033 }
034
035 public void setPrimaryKey(long pk) {
036 _bookmarksEntry.setPrimaryKey(pk);
037 }
038
039 public java.lang.String getUuid() {
040 return _bookmarksEntry.getUuid();
041 }
042
043 public void setUuid(java.lang.String uuid) {
044 _bookmarksEntry.setUuid(uuid);
045 }
046
047 public long getEntryId() {
048 return _bookmarksEntry.getEntryId();
049 }
050
051 public void setEntryId(long entryId) {
052 _bookmarksEntry.setEntryId(entryId);
053 }
054
055 public long getGroupId() {
056 return _bookmarksEntry.getGroupId();
057 }
058
059 public void setGroupId(long groupId) {
060 _bookmarksEntry.setGroupId(groupId);
061 }
062
063 public long getCompanyId() {
064 return _bookmarksEntry.getCompanyId();
065 }
066
067 public void setCompanyId(long companyId) {
068 _bookmarksEntry.setCompanyId(companyId);
069 }
070
071 public long getUserId() {
072 return _bookmarksEntry.getUserId();
073 }
074
075 public void setUserId(long userId) {
076 _bookmarksEntry.setUserId(userId);
077 }
078
079 public java.lang.String getUserUuid()
080 throws com.liferay.portal.kernel.exception.SystemException {
081 return _bookmarksEntry.getUserUuid();
082 }
083
084 public void setUserUuid(java.lang.String userUuid) {
085 _bookmarksEntry.setUserUuid(userUuid);
086 }
087
088 public java.util.Date getCreateDate() {
089 return _bookmarksEntry.getCreateDate();
090 }
091
092 public void setCreateDate(java.util.Date createDate) {
093 _bookmarksEntry.setCreateDate(createDate);
094 }
095
096 public java.util.Date getModifiedDate() {
097 return _bookmarksEntry.getModifiedDate();
098 }
099
100 public void setModifiedDate(java.util.Date modifiedDate) {
101 _bookmarksEntry.setModifiedDate(modifiedDate);
102 }
103
104 public long getFolderId() {
105 return _bookmarksEntry.getFolderId();
106 }
107
108 public void setFolderId(long folderId) {
109 _bookmarksEntry.setFolderId(folderId);
110 }
111
112 public java.lang.String getName() {
113 return _bookmarksEntry.getName();
114 }
115
116 public void setName(java.lang.String name) {
117 _bookmarksEntry.setName(name);
118 }
119
120 public java.lang.String getUrl() {
121 return _bookmarksEntry.getUrl();
122 }
123
124 public void setUrl(java.lang.String url) {
125 _bookmarksEntry.setUrl(url);
126 }
127
128 public java.lang.String getComments() {
129 return _bookmarksEntry.getComments();
130 }
131
132 public void setComments(java.lang.String comments) {
133 _bookmarksEntry.setComments(comments);
134 }
135
136 public int getVisits() {
137 return _bookmarksEntry.getVisits();
138 }
139
140 public void setVisits(int visits) {
141 _bookmarksEntry.setVisits(visits);
142 }
143
144 public int getPriority() {
145 return _bookmarksEntry.getPriority();
146 }
147
148 public void setPriority(int priority) {
149 _bookmarksEntry.setPriority(priority);
150 }
151
152 public com.liferay.portlet.bookmarks.model.BookmarksEntry toEscapedModel() {
153 return _bookmarksEntry.toEscapedModel();
154 }
155
156 public boolean isNew() {
157 return _bookmarksEntry.isNew();
158 }
159
160 public void setNew(boolean n) {
161 _bookmarksEntry.setNew(n);
162 }
163
164 public boolean isCachedModel() {
165 return _bookmarksEntry.isCachedModel();
166 }
167
168 public void setCachedModel(boolean cachedModel) {
169 _bookmarksEntry.setCachedModel(cachedModel);
170 }
171
172 public boolean isEscapedModel() {
173 return _bookmarksEntry.isEscapedModel();
174 }
175
176 public void setEscapedModel(boolean escapedModel) {
177 _bookmarksEntry.setEscapedModel(escapedModel);
178 }
179
180 public java.io.Serializable getPrimaryKeyObj() {
181 return _bookmarksEntry.getPrimaryKeyObj();
182 }
183
184 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
185 return _bookmarksEntry.getExpandoBridge();
186 }
187
188 public void setExpandoBridgeAttributes(
189 com.liferay.portal.service.ServiceContext serviceContext) {
190 _bookmarksEntry.setExpandoBridgeAttributes(serviceContext);
191 }
192
193 public java.lang.Object clone() {
194 return _bookmarksEntry.clone();
195 }
196
197 public int compareTo(
198 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry) {
199 return _bookmarksEntry.compareTo(bookmarksEntry);
200 }
201
202 public int hashCode() {
203 return _bookmarksEntry.hashCode();
204 }
205
206 public java.lang.String toString() {
207 return _bookmarksEntry.toString();
208 }
209
210 public java.lang.String toXmlString() {
211 return _bookmarksEntry.toXmlString();
212 }
213
214 public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder() {
215 return _bookmarksEntry.getFolder();
216 }
217
218 public BookmarksEntry getWrappedBookmarksEntry() {
219 return _bookmarksEntry;
220 }
221
222 private BookmarksEntry _bookmarksEntry;
223 }