001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.bookmarks.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link BookmarksEntry}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       BookmarksEntry
025     * @generated
026     */
027    public class BookmarksEntryWrapper implements BookmarksEntry {
028            public BookmarksEntryWrapper(BookmarksEntry bookmarksEntry) {
029                    _bookmarksEntry = bookmarksEntry;
030            }
031    
032            public long getPrimaryKey() {
033                    return _bookmarksEntry.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _bookmarksEntry.setPrimaryKey(pk);
038            }
039    
040            public java.lang.String getUuid() {
041                    return _bookmarksEntry.getUuid();
042            }
043    
044            public void setUuid(java.lang.String uuid) {
045                    _bookmarksEntry.setUuid(uuid);
046            }
047    
048            public long getEntryId() {
049                    return _bookmarksEntry.getEntryId();
050            }
051    
052            public void setEntryId(long entryId) {
053                    _bookmarksEntry.setEntryId(entryId);
054            }
055    
056            public long getGroupId() {
057                    return _bookmarksEntry.getGroupId();
058            }
059    
060            public void setGroupId(long groupId) {
061                    _bookmarksEntry.setGroupId(groupId);
062            }
063    
064            public long getCompanyId() {
065                    return _bookmarksEntry.getCompanyId();
066            }
067    
068            public void setCompanyId(long companyId) {
069                    _bookmarksEntry.setCompanyId(companyId);
070            }
071    
072            public long getUserId() {
073                    return _bookmarksEntry.getUserId();
074            }
075    
076            public void setUserId(long userId) {
077                    _bookmarksEntry.setUserId(userId);
078            }
079    
080            public java.lang.String getUserUuid()
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    return _bookmarksEntry.getUserUuid();
083            }
084    
085            public void setUserUuid(java.lang.String userUuid) {
086                    _bookmarksEntry.setUserUuid(userUuid);
087            }
088    
089            public java.util.Date getCreateDate() {
090                    return _bookmarksEntry.getCreateDate();
091            }
092    
093            public void setCreateDate(java.util.Date createDate) {
094                    _bookmarksEntry.setCreateDate(createDate);
095            }
096    
097            public java.util.Date getModifiedDate() {
098                    return _bookmarksEntry.getModifiedDate();
099            }
100    
101            public void setModifiedDate(java.util.Date modifiedDate) {
102                    _bookmarksEntry.setModifiedDate(modifiedDate);
103            }
104    
105            public long getFolderId() {
106                    return _bookmarksEntry.getFolderId();
107            }
108    
109            public void setFolderId(long folderId) {
110                    _bookmarksEntry.setFolderId(folderId);
111            }
112    
113            public java.lang.String getName() {
114                    return _bookmarksEntry.getName();
115            }
116    
117            public void setName(java.lang.String name) {
118                    _bookmarksEntry.setName(name);
119            }
120    
121            public java.lang.String getUrl() {
122                    return _bookmarksEntry.getUrl();
123            }
124    
125            public void setUrl(java.lang.String url) {
126                    _bookmarksEntry.setUrl(url);
127            }
128    
129            public java.lang.String getComments() {
130                    return _bookmarksEntry.getComments();
131            }
132    
133            public void setComments(java.lang.String comments) {
134                    _bookmarksEntry.setComments(comments);
135            }
136    
137            public int getVisits() {
138                    return _bookmarksEntry.getVisits();
139            }
140    
141            public void setVisits(int visits) {
142                    _bookmarksEntry.setVisits(visits);
143            }
144    
145            public int getPriority() {
146                    return _bookmarksEntry.getPriority();
147            }
148    
149            public void setPriority(int priority) {
150                    _bookmarksEntry.setPriority(priority);
151            }
152    
153            public com.liferay.portlet.bookmarks.model.BookmarksEntry toEscapedModel() {
154                    return _bookmarksEntry.toEscapedModel();
155            }
156    
157            public boolean isNew() {
158                    return _bookmarksEntry.isNew();
159            }
160    
161            public void setNew(boolean n) {
162                    _bookmarksEntry.setNew(n);
163            }
164    
165            public boolean isCachedModel() {
166                    return _bookmarksEntry.isCachedModel();
167            }
168    
169            public void setCachedModel(boolean cachedModel) {
170                    _bookmarksEntry.setCachedModel(cachedModel);
171            }
172    
173            public boolean isEscapedModel() {
174                    return _bookmarksEntry.isEscapedModel();
175            }
176    
177            public void setEscapedModel(boolean escapedModel) {
178                    _bookmarksEntry.setEscapedModel(escapedModel);
179            }
180    
181            public java.io.Serializable getPrimaryKeyObj() {
182                    return _bookmarksEntry.getPrimaryKeyObj();
183            }
184    
185            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
186                    return _bookmarksEntry.getExpandoBridge();
187            }
188    
189            public void setExpandoBridgeAttributes(
190                    com.liferay.portal.service.ServiceContext serviceContext) {
191                    _bookmarksEntry.setExpandoBridgeAttributes(serviceContext);
192            }
193    
194            public java.lang.Object clone() {
195                    return _bookmarksEntry.clone();
196            }
197    
198            public int compareTo(
199                    com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry) {
200                    return _bookmarksEntry.compareTo(bookmarksEntry);
201            }
202    
203            public int hashCode() {
204                    return _bookmarksEntry.hashCode();
205            }
206    
207            public java.lang.String toString() {
208                    return _bookmarksEntry.toString();
209            }
210    
211            public java.lang.String toXmlString() {
212                    return _bookmarksEntry.toXmlString();
213            }
214    
215            public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder() {
216                    return _bookmarksEntry.getFolder();
217            }
218    
219            public BookmarksEntry getWrappedBookmarksEntry() {
220                    return _bookmarksEntry;
221            }
222    
223            private BookmarksEntry _bookmarksEntry;
224    }