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