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.softwarecatalog.model;
16  
17  /**
18   * <a href="SCProductVersionSoap.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 SCProductVersion}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       SCProductVersion
31   * @generated
32   */
33  public class SCProductVersionWrapper implements SCProductVersion {
34      public SCProductVersionWrapper(SCProductVersion scProductVersion) {
35          _scProductVersion = scProductVersion;
36      }
37  
38      public long getPrimaryKey() {
39          return _scProductVersion.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _scProductVersion.setPrimaryKey(pk);
44      }
45  
46      public long getProductVersionId() {
47          return _scProductVersion.getProductVersionId();
48      }
49  
50      public void setProductVersionId(long productVersionId) {
51          _scProductVersion.setProductVersionId(productVersionId);
52      }
53  
54      public long getCompanyId() {
55          return _scProductVersion.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _scProductVersion.setCompanyId(companyId);
60      }
61  
62      public long getUserId() {
63          return _scProductVersion.getUserId();
64      }
65  
66      public void setUserId(long userId) {
67          _scProductVersion.setUserId(userId);
68      }
69  
70      public java.lang.String getUserUuid()
71          throws com.liferay.portal.SystemException {
72          return _scProductVersion.getUserUuid();
73      }
74  
75      public void setUserUuid(java.lang.String userUuid) {
76          _scProductVersion.setUserUuid(userUuid);
77      }
78  
79      public java.lang.String getUserName() {
80          return _scProductVersion.getUserName();
81      }
82  
83      public void setUserName(java.lang.String userName) {
84          _scProductVersion.setUserName(userName);
85      }
86  
87      public java.util.Date getCreateDate() {
88          return _scProductVersion.getCreateDate();
89      }
90  
91      public void setCreateDate(java.util.Date createDate) {
92          _scProductVersion.setCreateDate(createDate);
93      }
94  
95      public java.util.Date getModifiedDate() {
96          return _scProductVersion.getModifiedDate();
97      }
98  
99      public void setModifiedDate(java.util.Date modifiedDate) {
100         _scProductVersion.setModifiedDate(modifiedDate);
101     }
102 
103     public long getProductEntryId() {
104         return _scProductVersion.getProductEntryId();
105     }
106 
107     public void setProductEntryId(long productEntryId) {
108         _scProductVersion.setProductEntryId(productEntryId);
109     }
110 
111     public java.lang.String getVersion() {
112         return _scProductVersion.getVersion();
113     }
114 
115     public void setVersion(java.lang.String version) {
116         _scProductVersion.setVersion(version);
117     }
118 
119     public java.lang.String getChangeLog() {
120         return _scProductVersion.getChangeLog();
121     }
122 
123     public void setChangeLog(java.lang.String changeLog) {
124         _scProductVersion.setChangeLog(changeLog);
125     }
126 
127     public java.lang.String getDownloadPageURL() {
128         return _scProductVersion.getDownloadPageURL();
129     }
130 
131     public void setDownloadPageURL(java.lang.String downloadPageURL) {
132         _scProductVersion.setDownloadPageURL(downloadPageURL);
133     }
134 
135     public java.lang.String getDirectDownloadURL() {
136         return _scProductVersion.getDirectDownloadURL();
137     }
138 
139     public void setDirectDownloadURL(java.lang.String directDownloadURL) {
140         _scProductVersion.setDirectDownloadURL(directDownloadURL);
141     }
142 
143     public boolean getRepoStoreArtifact() {
144         return _scProductVersion.getRepoStoreArtifact();
145     }
146 
147     public boolean isRepoStoreArtifact() {
148         return _scProductVersion.isRepoStoreArtifact();
149     }
150 
151     public void setRepoStoreArtifact(boolean repoStoreArtifact) {
152         _scProductVersion.setRepoStoreArtifact(repoStoreArtifact);
153     }
154 
155     public boolean isNew() {
156         return _scProductVersion.isNew();
157     }
158 
159     public boolean setNew(boolean n) {
160         return _scProductVersion.setNew(n);
161     }
162 
163     public boolean isCachedModel() {
164         return _scProductVersion.isCachedModel();
165     }
166 
167     public void setCachedModel(boolean cachedModel) {
168         _scProductVersion.setCachedModel(cachedModel);
169     }
170 
171     public boolean isEscapedModel() {
172         return _scProductVersion.isEscapedModel();
173     }
174 
175     public void setEscapedModel(boolean escapedModel) {
176         _scProductVersion.setEscapedModel(escapedModel);
177     }
178 
179     public java.io.Serializable getPrimaryKeyObj() {
180         return _scProductVersion.getPrimaryKeyObj();
181     }
182 
183     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
184         return _scProductVersion.getExpandoBridge();
185     }
186 
187     public void setExpandoBridgeAttributes(
188         com.liferay.portal.service.ServiceContext serviceContext) {
189         _scProductVersion.setExpandoBridgeAttributes(serviceContext);
190     }
191 
192     public java.lang.Object clone() {
193         return _scProductVersion.clone();
194     }
195 
196     public int compareTo(
197         com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion) {
198         return _scProductVersion.compareTo(scProductVersion);
199     }
200 
201     public int hashCode() {
202         return _scProductVersion.hashCode();
203     }
204 
205     public com.liferay.portlet.softwarecatalog.model.SCProductVersion toEscapedModel() {
206         return _scProductVersion.toEscapedModel();
207     }
208 
209     public java.lang.String toString() {
210         return _scProductVersion.toString();
211     }
212 
213     public java.lang.String toXmlString() {
214         return _scProductVersion.toXmlString();
215     }
216 
217     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions()
218         throws com.liferay.portal.SystemException {
219         return _scProductVersion.getFrameworkVersions();
220     }
221 
222     public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry() {
223         return _scProductVersion.getProductEntry();
224     }
225 
226     public SCProductVersion getWrappedSCProductVersion() {
227         return _scProductVersion;
228     }
229 
230     private SCProductVersion _scProductVersion;
231 }