1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.bookmarks.model;
24  
25  
26  /**
27   * <a href="BookmarksEntrySoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link BookmarksEntry}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       BookmarksEntry
40   * @generated
41   */
42  public class BookmarksEntryWrapper implements BookmarksEntry {
43      public BookmarksEntryWrapper(BookmarksEntry bookmarksEntry) {
44          _bookmarksEntry = bookmarksEntry;
45      }
46  
47      public long getPrimaryKey() {
48          return _bookmarksEntry.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _bookmarksEntry.setPrimaryKey(pk);
53      }
54  
55      public java.lang.String getUuid() {
56          return _bookmarksEntry.getUuid();
57      }
58  
59      public void setUuid(java.lang.String uuid) {
60          _bookmarksEntry.setUuid(uuid);
61      }
62  
63      public long getEntryId() {
64          return _bookmarksEntry.getEntryId();
65      }
66  
67      public void setEntryId(long entryId) {
68          _bookmarksEntry.setEntryId(entryId);
69      }
70  
71      public long getGroupId() {
72          return _bookmarksEntry.getGroupId();
73      }
74  
75      public void setGroupId(long groupId) {
76          _bookmarksEntry.setGroupId(groupId);
77      }
78  
79      public long getCompanyId() {
80          return _bookmarksEntry.getCompanyId();
81      }
82  
83      public void setCompanyId(long companyId) {
84          _bookmarksEntry.setCompanyId(companyId);
85      }
86  
87      public long getUserId() {
88          return _bookmarksEntry.getUserId();
89      }
90  
91      public void setUserId(long userId) {
92          _bookmarksEntry.setUserId(userId);
93      }
94  
95      public java.lang.String getUserUuid()
96          throws com.liferay.portal.SystemException {
97          return _bookmarksEntry.getUserUuid();
98      }
99  
100     public void setUserUuid(java.lang.String userUuid) {
101         _bookmarksEntry.setUserUuid(userUuid);
102     }
103 
104     public java.util.Date getCreateDate() {
105         return _bookmarksEntry.getCreateDate();
106     }
107 
108     public void setCreateDate(java.util.Date createDate) {
109         _bookmarksEntry.setCreateDate(createDate);
110     }
111 
112     public java.util.Date getModifiedDate() {
113         return _bookmarksEntry.getModifiedDate();
114     }
115 
116     public void setModifiedDate(java.util.Date modifiedDate) {
117         _bookmarksEntry.setModifiedDate(modifiedDate);
118     }
119 
120     public long getFolderId() {
121         return _bookmarksEntry.getFolderId();
122     }
123 
124     public void setFolderId(long folderId) {
125         _bookmarksEntry.setFolderId(folderId);
126     }
127 
128     public java.lang.String getName() {
129         return _bookmarksEntry.getName();
130     }
131 
132     public void setName(java.lang.String name) {
133         _bookmarksEntry.setName(name);
134     }
135 
136     public java.lang.String getUrl() {
137         return _bookmarksEntry.getUrl();
138     }
139 
140     public void setUrl(java.lang.String url) {
141         _bookmarksEntry.setUrl(url);
142     }
143 
144     public java.lang.String getComments() {
145         return _bookmarksEntry.getComments();
146     }
147 
148     public void setComments(java.lang.String comments) {
149         _bookmarksEntry.setComments(comments);
150     }
151 
152     public int getVisits() {
153         return _bookmarksEntry.getVisits();
154     }
155 
156     public void setVisits(int visits) {
157         _bookmarksEntry.setVisits(visits);
158     }
159 
160     public int getPriority() {
161         return _bookmarksEntry.getPriority();
162     }
163 
164     public void setPriority(int priority) {
165         _bookmarksEntry.setPriority(priority);
166     }
167 
168     public com.liferay.portlet.bookmarks.model.BookmarksEntry toEscapedModel() {
169         return _bookmarksEntry.toEscapedModel();
170     }
171 
172     public boolean isNew() {
173         return _bookmarksEntry.isNew();
174     }
175 
176     public boolean setNew(boolean n) {
177         return _bookmarksEntry.setNew(n);
178     }
179 
180     public boolean isCachedModel() {
181         return _bookmarksEntry.isCachedModel();
182     }
183 
184     public void setCachedModel(boolean cachedModel) {
185         _bookmarksEntry.setCachedModel(cachedModel);
186     }
187 
188     public boolean isEscapedModel() {
189         return _bookmarksEntry.isEscapedModel();
190     }
191 
192     public void setEscapedModel(boolean escapedModel) {
193         _bookmarksEntry.setEscapedModel(escapedModel);
194     }
195 
196     public java.io.Serializable getPrimaryKeyObj() {
197         return _bookmarksEntry.getPrimaryKeyObj();
198     }
199 
200     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
201         return _bookmarksEntry.getExpandoBridge();
202     }
203 
204     public void setExpandoBridgeAttributes(
205         com.liferay.portal.service.ServiceContext serviceContext) {
206         _bookmarksEntry.setExpandoBridgeAttributes(serviceContext);
207     }
208 
209     public java.lang.Object clone() {
210         return _bookmarksEntry.clone();
211     }
212 
213     public int compareTo(
214         com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry) {
215         return _bookmarksEntry.compareTo(bookmarksEntry);
216     }
217 
218     public int hashCode() {
219         return _bookmarksEntry.hashCode();
220     }
221 
222     public java.lang.String toString() {
223         return _bookmarksEntry.toString();
224     }
225 
226     public java.lang.String toXmlString() {
227         return _bookmarksEntry.toXmlString();
228     }
229 
230     public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder() {
231         return _bookmarksEntry.getFolder();
232     }
233 
234     public BookmarksEntry getWrappedBookmarksEntry() {
235         return _bookmarksEntry;
236     }
237 
238     private BookmarksEntry _bookmarksEntry;
239 }