1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.bookmarks.model;
16  
17  
18  /**
19   * <a href="BookmarksEntrySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link BookmarksEntry}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       BookmarksEntry
32   * @generated
33   */
34  public class BookmarksEntryWrapper implements BookmarksEntry {
35      public BookmarksEntryWrapper(BookmarksEntry bookmarksEntry) {
36          _bookmarksEntry = bookmarksEntry;
37      }
38  
39      public long getPrimaryKey() {
40          return _bookmarksEntry.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _bookmarksEntry.setPrimaryKey(pk);
45      }
46  
47      public java.lang.String getUuid() {
48          return _bookmarksEntry.getUuid();
49      }
50  
51      public void setUuid(java.lang.String uuid) {
52          _bookmarksEntry.setUuid(uuid);
53      }
54  
55      public long getEntryId() {
56          return _bookmarksEntry.getEntryId();
57      }
58  
59      public void setEntryId(long entryId) {
60          _bookmarksEntry.setEntryId(entryId);
61      }
62  
63      public long getGroupId() {
64          return _bookmarksEntry.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _bookmarksEntry.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _bookmarksEntry.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _bookmarksEntry.setCompanyId(companyId);
77      }
78  
79      public long getUserId() {
80          return _bookmarksEntry.getUserId();
81      }
82  
83      public void setUserId(long userId) {
84          _bookmarksEntry.setUserId(userId);
85      }
86  
87      public java.lang.String getUserUuid()
88          throws com.liferay.portal.kernel.exception.SystemException {
89          return _bookmarksEntry.getUserUuid();
90      }
91  
92      public void setUserUuid(java.lang.String userUuid) {
93          _bookmarksEntry.setUserUuid(userUuid);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _bookmarksEntry.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _bookmarksEntry.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _bookmarksEntry.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _bookmarksEntry.setModifiedDate(modifiedDate);
110     }
111 
112     public long getFolderId() {
113         return _bookmarksEntry.getFolderId();
114     }
115 
116     public void setFolderId(long folderId) {
117         _bookmarksEntry.setFolderId(folderId);
118     }
119 
120     public java.lang.String getName() {
121         return _bookmarksEntry.getName();
122     }
123 
124     public void setName(java.lang.String name) {
125         _bookmarksEntry.setName(name);
126     }
127 
128     public java.lang.String getUrl() {
129         return _bookmarksEntry.getUrl();
130     }
131 
132     public void setUrl(java.lang.String url) {
133         _bookmarksEntry.setUrl(url);
134     }
135 
136     public java.lang.String getComments() {
137         return _bookmarksEntry.getComments();
138     }
139 
140     public void setComments(java.lang.String comments) {
141         _bookmarksEntry.setComments(comments);
142     }
143 
144     public int getVisits() {
145         return _bookmarksEntry.getVisits();
146     }
147 
148     public void setVisits(int visits) {
149         _bookmarksEntry.setVisits(visits);
150     }
151 
152     public int getPriority() {
153         return _bookmarksEntry.getPriority();
154     }
155 
156     public void setPriority(int priority) {
157         _bookmarksEntry.setPriority(priority);
158     }
159 
160     public com.liferay.portlet.bookmarks.model.BookmarksEntry toEscapedModel() {
161         return _bookmarksEntry.toEscapedModel();
162     }
163 
164     public boolean isNew() {
165         return _bookmarksEntry.isNew();
166     }
167 
168     public boolean setNew(boolean n) {
169         return _bookmarksEntry.setNew(n);
170     }
171 
172     public boolean isCachedModel() {
173         return _bookmarksEntry.isCachedModel();
174     }
175 
176     public void setCachedModel(boolean cachedModel) {
177         _bookmarksEntry.setCachedModel(cachedModel);
178     }
179 
180     public boolean isEscapedModel() {
181         return _bookmarksEntry.isEscapedModel();
182     }
183 
184     public void setEscapedModel(boolean escapedModel) {
185         _bookmarksEntry.setEscapedModel(escapedModel);
186     }
187 
188     public java.io.Serializable getPrimaryKeyObj() {
189         return _bookmarksEntry.getPrimaryKeyObj();
190     }
191 
192     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
193         return _bookmarksEntry.getExpandoBridge();
194     }
195 
196     public void setExpandoBridgeAttributes(
197         com.liferay.portal.service.ServiceContext serviceContext) {
198         _bookmarksEntry.setExpandoBridgeAttributes(serviceContext);
199     }
200 
201     public java.lang.Object clone() {
202         return _bookmarksEntry.clone();
203     }
204 
205     public int compareTo(
206         com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry) {
207         return _bookmarksEntry.compareTo(bookmarksEntry);
208     }
209 
210     public int hashCode() {
211         return _bookmarksEntry.hashCode();
212     }
213 
214     public java.lang.String toString() {
215         return _bookmarksEntry.toString();
216     }
217 
218     public java.lang.String toXmlString() {
219         return _bookmarksEntry.toXmlString();
220     }
221 
222     public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder() {
223         return _bookmarksEntry.getFolder();
224     }
225 
226     public BookmarksEntry getWrappedBookmarksEntry() {
227         return _bookmarksEntry;
228     }
229 
230     private BookmarksEntry _bookmarksEntry;
231 }