001    /**
002     * Copyright (c) 2000-2011 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.softwarecatalog.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SCProductEntry}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SCProductEntry
024     * @generated
025     */
026    public class SCProductEntryWrapper implements SCProductEntry {
027            public SCProductEntryWrapper(SCProductEntry scProductEntry) {
028                    _scProductEntry = scProductEntry;
029            }
030    
031            public long getPrimaryKey() {
032                    return _scProductEntry.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _scProductEntry.setPrimaryKey(pk);
037            }
038    
039            public long getProductEntryId() {
040                    return _scProductEntry.getProductEntryId();
041            }
042    
043            public void setProductEntryId(long productEntryId) {
044                    _scProductEntry.setProductEntryId(productEntryId);
045            }
046    
047            public long getGroupId() {
048                    return _scProductEntry.getGroupId();
049            }
050    
051            public void setGroupId(long groupId) {
052                    _scProductEntry.setGroupId(groupId);
053            }
054    
055            public long getCompanyId() {
056                    return _scProductEntry.getCompanyId();
057            }
058    
059            public void setCompanyId(long companyId) {
060                    _scProductEntry.setCompanyId(companyId);
061            }
062    
063            public long getUserId() {
064                    return _scProductEntry.getUserId();
065            }
066    
067            public void setUserId(long userId) {
068                    _scProductEntry.setUserId(userId);
069            }
070    
071            public java.lang.String getUserUuid()
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _scProductEntry.getUserUuid();
074            }
075    
076            public void setUserUuid(java.lang.String userUuid) {
077                    _scProductEntry.setUserUuid(userUuid);
078            }
079    
080            public java.lang.String getUserName() {
081                    return _scProductEntry.getUserName();
082            }
083    
084            public void setUserName(java.lang.String userName) {
085                    _scProductEntry.setUserName(userName);
086            }
087    
088            public java.util.Date getCreateDate() {
089                    return _scProductEntry.getCreateDate();
090            }
091    
092            public void setCreateDate(java.util.Date createDate) {
093                    _scProductEntry.setCreateDate(createDate);
094            }
095    
096            public java.util.Date getModifiedDate() {
097                    return _scProductEntry.getModifiedDate();
098            }
099    
100            public void setModifiedDate(java.util.Date modifiedDate) {
101                    _scProductEntry.setModifiedDate(modifiedDate);
102            }
103    
104            public java.lang.String getName() {
105                    return _scProductEntry.getName();
106            }
107    
108            public void setName(java.lang.String name) {
109                    _scProductEntry.setName(name);
110            }
111    
112            public java.lang.String getType() {
113                    return _scProductEntry.getType();
114            }
115    
116            public void setType(java.lang.String type) {
117                    _scProductEntry.setType(type);
118            }
119    
120            public java.lang.String getTags() {
121                    return _scProductEntry.getTags();
122            }
123    
124            public void setTags(java.lang.String tags) {
125                    _scProductEntry.setTags(tags);
126            }
127    
128            public java.lang.String getShortDescription() {
129                    return _scProductEntry.getShortDescription();
130            }
131    
132            public void setShortDescription(java.lang.String shortDescription) {
133                    _scProductEntry.setShortDescription(shortDescription);
134            }
135    
136            public java.lang.String getLongDescription() {
137                    return _scProductEntry.getLongDescription();
138            }
139    
140            public void setLongDescription(java.lang.String longDescription) {
141                    _scProductEntry.setLongDescription(longDescription);
142            }
143    
144            public java.lang.String getPageURL() {
145                    return _scProductEntry.getPageURL();
146            }
147    
148            public void setPageURL(java.lang.String pageURL) {
149                    _scProductEntry.setPageURL(pageURL);
150            }
151    
152            public java.lang.String getAuthor() {
153                    return _scProductEntry.getAuthor();
154            }
155    
156            public void setAuthor(java.lang.String author) {
157                    _scProductEntry.setAuthor(author);
158            }
159    
160            public java.lang.String getRepoGroupId() {
161                    return _scProductEntry.getRepoGroupId();
162            }
163    
164            public void setRepoGroupId(java.lang.String repoGroupId) {
165                    _scProductEntry.setRepoGroupId(repoGroupId);
166            }
167    
168            public java.lang.String getRepoArtifactId() {
169                    return _scProductEntry.getRepoArtifactId();
170            }
171    
172            public void setRepoArtifactId(java.lang.String repoArtifactId) {
173                    _scProductEntry.setRepoArtifactId(repoArtifactId);
174            }
175    
176            public com.liferay.portlet.softwarecatalog.model.SCProductEntry toEscapedModel() {
177                    return _scProductEntry.toEscapedModel();
178            }
179    
180            public boolean isNew() {
181                    return _scProductEntry.isNew();
182            }
183    
184            public void setNew(boolean n) {
185                    _scProductEntry.setNew(n);
186            }
187    
188            public boolean isCachedModel() {
189                    return _scProductEntry.isCachedModel();
190            }
191    
192            public void setCachedModel(boolean cachedModel) {
193                    _scProductEntry.setCachedModel(cachedModel);
194            }
195    
196            public boolean isEscapedModel() {
197                    return _scProductEntry.isEscapedModel();
198            }
199    
200            public void setEscapedModel(boolean escapedModel) {
201                    _scProductEntry.setEscapedModel(escapedModel);
202            }
203    
204            public java.io.Serializable getPrimaryKeyObj() {
205                    return _scProductEntry.getPrimaryKeyObj();
206            }
207    
208            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
209                    return _scProductEntry.getExpandoBridge();
210            }
211    
212            public void setExpandoBridgeAttributes(
213                    com.liferay.portal.service.ServiceContext serviceContext) {
214                    _scProductEntry.setExpandoBridgeAttributes(serviceContext);
215            }
216    
217            public java.lang.Object clone() {
218                    return _scProductEntry.clone();
219            }
220    
221            public int compareTo(
222                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
223                    return _scProductEntry.compareTo(scProductEntry);
224            }
225    
226            public int hashCode() {
227                    return _scProductEntry.hashCode();
228            }
229    
230            public java.lang.String toString() {
231                    return _scProductEntry.toString();
232            }
233    
234            public java.lang.String toXmlString() {
235                    return _scProductEntry.toXmlString();
236            }
237    
238            public com.liferay.portlet.softwarecatalog.model.SCProductVersion getLatestVersion()
239                    throws com.liferay.portal.kernel.exception.SystemException {
240                    return _scProductEntry.getLatestVersion();
241            }
242    
243            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
244                    throws com.liferay.portal.kernel.exception.SystemException {
245                    return _scProductEntry.getLicenses();
246            }
247    
248            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getScreenshots()
249                    throws com.liferay.portal.kernel.exception.SystemException {
250                    return _scProductEntry.getScreenshots();
251            }
252    
253            public SCProductEntry getWrappedSCProductEntry() {
254                    return _scProductEntry;
255            }
256    
257            private SCProductEntry _scProductEntry;
258    }