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.softwarecatalog.model;
16  
17  
18  /**
19   * <a href="SCProductEntrySoap.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 SCProductEntry}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SCProductEntry
32   * @generated
33   */
34  public class SCProductEntryWrapper implements SCProductEntry {
35      public SCProductEntryWrapper(SCProductEntry scProductEntry) {
36          _scProductEntry = scProductEntry;
37      }
38  
39      public long getPrimaryKey() {
40          return _scProductEntry.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _scProductEntry.setPrimaryKey(pk);
45      }
46  
47      public long getProductEntryId() {
48          return _scProductEntry.getProductEntryId();
49      }
50  
51      public void setProductEntryId(long productEntryId) {
52          _scProductEntry.setProductEntryId(productEntryId);
53      }
54  
55      public long getGroupId() {
56          return _scProductEntry.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _scProductEntry.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _scProductEntry.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _scProductEntry.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _scProductEntry.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _scProductEntry.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.kernel.exception.SystemException {
81          return _scProductEntry.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _scProductEntry.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _scProductEntry.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _scProductEntry.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _scProductEntry.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _scProductEntry.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _scProductEntry.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _scProductEntry.setModifiedDate(modifiedDate);
110     }
111 
112     public java.lang.String getName() {
113         return _scProductEntry.getName();
114     }
115 
116     public void setName(java.lang.String name) {
117         _scProductEntry.setName(name);
118     }
119 
120     public java.lang.String getType() {
121         return _scProductEntry.getType();
122     }
123 
124     public void setType(java.lang.String type) {
125         _scProductEntry.setType(type);
126     }
127 
128     public java.lang.String getTags() {
129         return _scProductEntry.getTags();
130     }
131 
132     public void setTags(java.lang.String tags) {
133         _scProductEntry.setTags(tags);
134     }
135 
136     public java.lang.String getShortDescription() {
137         return _scProductEntry.getShortDescription();
138     }
139 
140     public void setShortDescription(java.lang.String shortDescription) {
141         _scProductEntry.setShortDescription(shortDescription);
142     }
143 
144     public java.lang.String getLongDescription() {
145         return _scProductEntry.getLongDescription();
146     }
147 
148     public void setLongDescription(java.lang.String longDescription) {
149         _scProductEntry.setLongDescription(longDescription);
150     }
151 
152     public java.lang.String getPageURL() {
153         return _scProductEntry.getPageURL();
154     }
155 
156     public void setPageURL(java.lang.String pageURL) {
157         _scProductEntry.setPageURL(pageURL);
158     }
159 
160     public java.lang.String getAuthor() {
161         return _scProductEntry.getAuthor();
162     }
163 
164     public void setAuthor(java.lang.String author) {
165         _scProductEntry.setAuthor(author);
166     }
167 
168     public java.lang.String getRepoGroupId() {
169         return _scProductEntry.getRepoGroupId();
170     }
171 
172     public void setRepoGroupId(java.lang.String repoGroupId) {
173         _scProductEntry.setRepoGroupId(repoGroupId);
174     }
175 
176     public java.lang.String getRepoArtifactId() {
177         return _scProductEntry.getRepoArtifactId();
178     }
179 
180     public void setRepoArtifactId(java.lang.String repoArtifactId) {
181         _scProductEntry.setRepoArtifactId(repoArtifactId);
182     }
183 
184     public com.liferay.portlet.softwarecatalog.model.SCProductEntry toEscapedModel() {
185         return _scProductEntry.toEscapedModel();
186     }
187 
188     public boolean isNew() {
189         return _scProductEntry.isNew();
190     }
191 
192     public boolean setNew(boolean n) {
193         return _scProductEntry.setNew(n);
194     }
195 
196     public boolean isCachedModel() {
197         return _scProductEntry.isCachedModel();
198     }
199 
200     public void setCachedModel(boolean cachedModel) {
201         _scProductEntry.setCachedModel(cachedModel);
202     }
203 
204     public boolean isEscapedModel() {
205         return _scProductEntry.isEscapedModel();
206     }
207 
208     public void setEscapedModel(boolean escapedModel) {
209         _scProductEntry.setEscapedModel(escapedModel);
210     }
211 
212     public java.io.Serializable getPrimaryKeyObj() {
213         return _scProductEntry.getPrimaryKeyObj();
214     }
215 
216     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
217         return _scProductEntry.getExpandoBridge();
218     }
219 
220     public void setExpandoBridgeAttributes(
221         com.liferay.portal.service.ServiceContext serviceContext) {
222         _scProductEntry.setExpandoBridgeAttributes(serviceContext);
223     }
224 
225     public java.lang.Object clone() {
226         return _scProductEntry.clone();
227     }
228 
229     public int compareTo(
230         com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
231         return _scProductEntry.compareTo(scProductEntry);
232     }
233 
234     public int hashCode() {
235         return _scProductEntry.hashCode();
236     }
237 
238     public java.lang.String toString() {
239         return _scProductEntry.toString();
240     }
241 
242     public java.lang.String toXmlString() {
243         return _scProductEntry.toXmlString();
244     }
245 
246     public com.liferay.portlet.softwarecatalog.model.SCProductVersion getLatestVersion()
247         throws com.liferay.portal.kernel.exception.SystemException {
248         return _scProductEntry.getLatestVersion();
249     }
250 
251     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
252         throws com.liferay.portal.kernel.exception.SystemException {
253         return _scProductEntry.getLicenses();
254     }
255 
256     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getScreenshots()
257         throws com.liferay.portal.kernel.exception.SystemException {
258         return _scProductEntry.getScreenshots();
259     }
260 
261     public SCProductEntry getWrappedSCProductEntry() {
262         return _scProductEntry;
263     }
264 
265     private SCProductEntry _scProductEntry;
266 }