001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.softwarecatalog.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SCFrameworkVersion}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SCFrameworkVersion
024     * @generated
025     */
026    public class SCFrameworkVersionWrapper implements SCFrameworkVersion {
027            public SCFrameworkVersionWrapper(SCFrameworkVersion scFrameworkVersion) {
028                    _scFrameworkVersion = scFrameworkVersion;
029            }
030    
031            /**
032            * Gets the primary key of this s c framework version.
033            *
034            * @return the primary key of this s c framework version
035            */
036            public long getPrimaryKey() {
037                    return _scFrameworkVersion.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this s c framework version
042            *
043            * @param pk the primary key of this s c framework version
044            */
045            public void setPrimaryKey(long pk) {
046                    _scFrameworkVersion.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the framework version id of this s c framework version.
051            *
052            * @return the framework version id of this s c framework version
053            */
054            public long getFrameworkVersionId() {
055                    return _scFrameworkVersion.getFrameworkVersionId();
056            }
057    
058            /**
059            * Sets the framework version id of this s c framework version.
060            *
061            * @param frameworkVersionId the framework version id of this s c framework version
062            */
063            public void setFrameworkVersionId(long frameworkVersionId) {
064                    _scFrameworkVersion.setFrameworkVersionId(frameworkVersionId);
065            }
066    
067            /**
068            * Gets the group id of this s c framework version.
069            *
070            * @return the group id of this s c framework version
071            */
072            public long getGroupId() {
073                    return _scFrameworkVersion.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this s c framework version.
078            *
079            * @param groupId the group id of this s c framework version
080            */
081            public void setGroupId(long groupId) {
082                    _scFrameworkVersion.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this s c framework version.
087            *
088            * @return the company id of this s c framework version
089            */
090            public long getCompanyId() {
091                    return _scFrameworkVersion.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this s c framework version.
096            *
097            * @param companyId the company id of this s c framework version
098            */
099            public void setCompanyId(long companyId) {
100                    _scFrameworkVersion.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this s c framework version.
105            *
106            * @return the user id of this s c framework version
107            */
108            public long getUserId() {
109                    return _scFrameworkVersion.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this s c framework version.
114            *
115            * @param userId the user id of this s c framework version
116            */
117            public void setUserId(long userId) {
118                    _scFrameworkVersion.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this s c framework version.
123            *
124            * @return the user uuid of this s c framework version
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _scFrameworkVersion.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this s c framework version.
134            *
135            * @param userUuid the user uuid of this s c framework version
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _scFrameworkVersion.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the user name of this s c framework version.
143            *
144            * @return the user name of this s c framework version
145            */
146            public java.lang.String getUserName() {
147                    return _scFrameworkVersion.getUserName();
148            }
149    
150            /**
151            * Sets the user name of this s c framework version.
152            *
153            * @param userName the user name of this s c framework version
154            */
155            public void setUserName(java.lang.String userName) {
156                    _scFrameworkVersion.setUserName(userName);
157            }
158    
159            /**
160            * Gets the create date of this s c framework version.
161            *
162            * @return the create date of this s c framework version
163            */
164            public java.util.Date getCreateDate() {
165                    return _scFrameworkVersion.getCreateDate();
166            }
167    
168            /**
169            * Sets the create date of this s c framework version.
170            *
171            * @param createDate the create date of this s c framework version
172            */
173            public void setCreateDate(java.util.Date createDate) {
174                    _scFrameworkVersion.setCreateDate(createDate);
175            }
176    
177            /**
178            * Gets the modified date of this s c framework version.
179            *
180            * @return the modified date of this s c framework version
181            */
182            public java.util.Date getModifiedDate() {
183                    return _scFrameworkVersion.getModifiedDate();
184            }
185    
186            /**
187            * Sets the modified date of this s c framework version.
188            *
189            * @param modifiedDate the modified date of this s c framework version
190            */
191            public void setModifiedDate(java.util.Date modifiedDate) {
192                    _scFrameworkVersion.setModifiedDate(modifiedDate);
193            }
194    
195            /**
196            * Gets the name of this s c framework version.
197            *
198            * @return the name of this s c framework version
199            */
200            public java.lang.String getName() {
201                    return _scFrameworkVersion.getName();
202            }
203    
204            /**
205            * Sets the name of this s c framework version.
206            *
207            * @param name the name of this s c framework version
208            */
209            public void setName(java.lang.String name) {
210                    _scFrameworkVersion.setName(name);
211            }
212    
213            /**
214            * Gets the url of this s c framework version.
215            *
216            * @return the url of this s c framework version
217            */
218            public java.lang.String getUrl() {
219                    return _scFrameworkVersion.getUrl();
220            }
221    
222            /**
223            * Sets the url of this s c framework version.
224            *
225            * @param url the url of this s c framework version
226            */
227            public void setUrl(java.lang.String url) {
228                    _scFrameworkVersion.setUrl(url);
229            }
230    
231            /**
232            * Gets the active of this s c framework version.
233            *
234            * @return the active of this s c framework version
235            */
236            public boolean getActive() {
237                    return _scFrameworkVersion.getActive();
238            }
239    
240            /**
241            * Determines whether this s c framework version is active.
242            *
243            * @return whether this s c framework version is active
244            */
245            public boolean isActive() {
246                    return _scFrameworkVersion.isActive();
247            }
248    
249            /**
250            * Sets whether this {$entity.humanName} is active.
251            *
252            * @param active the active of this s c framework version
253            */
254            public void setActive(boolean active) {
255                    _scFrameworkVersion.setActive(active);
256            }
257    
258            /**
259            * Gets the priority of this s c framework version.
260            *
261            * @return the priority of this s c framework version
262            */
263            public int getPriority() {
264                    return _scFrameworkVersion.getPriority();
265            }
266    
267            /**
268            * Sets the priority of this s c framework version.
269            *
270            * @param priority the priority of this s c framework version
271            */
272            public void setPriority(int priority) {
273                    _scFrameworkVersion.setPriority(priority);
274            }
275    
276            public boolean isNew() {
277                    return _scFrameworkVersion.isNew();
278            }
279    
280            public void setNew(boolean n) {
281                    _scFrameworkVersion.setNew(n);
282            }
283    
284            public boolean isCachedModel() {
285                    return _scFrameworkVersion.isCachedModel();
286            }
287    
288            public void setCachedModel(boolean cachedModel) {
289                    _scFrameworkVersion.setCachedModel(cachedModel);
290            }
291    
292            public boolean isEscapedModel() {
293                    return _scFrameworkVersion.isEscapedModel();
294            }
295    
296            public void setEscapedModel(boolean escapedModel) {
297                    _scFrameworkVersion.setEscapedModel(escapedModel);
298            }
299    
300            public java.io.Serializable getPrimaryKeyObj() {
301                    return _scFrameworkVersion.getPrimaryKeyObj();
302            }
303    
304            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
305                    return _scFrameworkVersion.getExpandoBridge();
306            }
307    
308            public void setExpandoBridgeAttributes(
309                    com.liferay.portal.service.ServiceContext serviceContext) {
310                    _scFrameworkVersion.setExpandoBridgeAttributes(serviceContext);
311            }
312    
313            public java.lang.Object clone() {
314                    return _scFrameworkVersion.clone();
315            }
316    
317            public int compareTo(
318                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion) {
319                    return _scFrameworkVersion.compareTo(scFrameworkVersion);
320            }
321    
322            public int hashCode() {
323                    return _scFrameworkVersion.hashCode();
324            }
325    
326            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion toEscapedModel() {
327                    return _scFrameworkVersion.toEscapedModel();
328            }
329    
330            public java.lang.String toString() {
331                    return _scFrameworkVersion.toString();
332            }
333    
334            public java.lang.String toXmlString() {
335                    return _scFrameworkVersion.toXmlString();
336            }
337    
338            public SCFrameworkVersion getWrappedSCFrameworkVersion() {
339                    return _scFrameworkVersion;
340            }
341    
342            private SCFrameworkVersion _scFrameworkVersion;
343    }