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="SCFrameworkVersionSoap.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 SCFrameworkVersion}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       SCFrameworkVersion
31   * @generated
32   */
33  public class SCFrameworkVersionWrapper implements SCFrameworkVersion {
34      public SCFrameworkVersionWrapper(SCFrameworkVersion scFrameworkVersion) {
35          _scFrameworkVersion = scFrameworkVersion;
36      }
37  
38      public long getPrimaryKey() {
39          return _scFrameworkVersion.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _scFrameworkVersion.setPrimaryKey(pk);
44      }
45  
46      public long getFrameworkVersionId() {
47          return _scFrameworkVersion.getFrameworkVersionId();
48      }
49  
50      public void setFrameworkVersionId(long frameworkVersionId) {
51          _scFrameworkVersion.setFrameworkVersionId(frameworkVersionId);
52      }
53  
54      public long getGroupId() {
55          return _scFrameworkVersion.getGroupId();
56      }
57  
58      public void setGroupId(long groupId) {
59          _scFrameworkVersion.setGroupId(groupId);
60      }
61  
62      public long getCompanyId() {
63          return _scFrameworkVersion.getCompanyId();
64      }
65  
66      public void setCompanyId(long companyId) {
67          _scFrameworkVersion.setCompanyId(companyId);
68      }
69  
70      public long getUserId() {
71          return _scFrameworkVersion.getUserId();
72      }
73  
74      public void setUserId(long userId) {
75          _scFrameworkVersion.setUserId(userId);
76      }
77  
78      public java.lang.String getUserUuid()
79          throws com.liferay.portal.SystemException {
80          return _scFrameworkVersion.getUserUuid();
81      }
82  
83      public void setUserUuid(java.lang.String userUuid) {
84          _scFrameworkVersion.setUserUuid(userUuid);
85      }
86  
87      public java.lang.String getUserName() {
88          return _scFrameworkVersion.getUserName();
89      }
90  
91      public void setUserName(java.lang.String userName) {
92          _scFrameworkVersion.setUserName(userName);
93      }
94  
95      public java.util.Date getCreateDate() {
96          return _scFrameworkVersion.getCreateDate();
97      }
98  
99      public void setCreateDate(java.util.Date createDate) {
100         _scFrameworkVersion.setCreateDate(createDate);
101     }
102 
103     public java.util.Date getModifiedDate() {
104         return _scFrameworkVersion.getModifiedDate();
105     }
106 
107     public void setModifiedDate(java.util.Date modifiedDate) {
108         _scFrameworkVersion.setModifiedDate(modifiedDate);
109     }
110 
111     public java.lang.String getName() {
112         return _scFrameworkVersion.getName();
113     }
114 
115     public void setName(java.lang.String name) {
116         _scFrameworkVersion.setName(name);
117     }
118 
119     public java.lang.String getUrl() {
120         return _scFrameworkVersion.getUrl();
121     }
122 
123     public void setUrl(java.lang.String url) {
124         _scFrameworkVersion.setUrl(url);
125     }
126 
127     public boolean getActive() {
128         return _scFrameworkVersion.getActive();
129     }
130 
131     public boolean isActive() {
132         return _scFrameworkVersion.isActive();
133     }
134 
135     public void setActive(boolean active) {
136         _scFrameworkVersion.setActive(active);
137     }
138 
139     public int getPriority() {
140         return _scFrameworkVersion.getPriority();
141     }
142 
143     public void setPriority(int priority) {
144         _scFrameworkVersion.setPriority(priority);
145     }
146 
147     public boolean isNew() {
148         return _scFrameworkVersion.isNew();
149     }
150 
151     public boolean setNew(boolean n) {
152         return _scFrameworkVersion.setNew(n);
153     }
154 
155     public boolean isCachedModel() {
156         return _scFrameworkVersion.isCachedModel();
157     }
158 
159     public void setCachedModel(boolean cachedModel) {
160         _scFrameworkVersion.setCachedModel(cachedModel);
161     }
162 
163     public boolean isEscapedModel() {
164         return _scFrameworkVersion.isEscapedModel();
165     }
166 
167     public void setEscapedModel(boolean escapedModel) {
168         _scFrameworkVersion.setEscapedModel(escapedModel);
169     }
170 
171     public java.io.Serializable getPrimaryKeyObj() {
172         return _scFrameworkVersion.getPrimaryKeyObj();
173     }
174 
175     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
176         return _scFrameworkVersion.getExpandoBridge();
177     }
178 
179     public void setExpandoBridgeAttributes(
180         com.liferay.portal.service.ServiceContext serviceContext) {
181         _scFrameworkVersion.setExpandoBridgeAttributes(serviceContext);
182     }
183 
184     public java.lang.Object clone() {
185         return _scFrameworkVersion.clone();
186     }
187 
188     public int compareTo(
189         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion) {
190         return _scFrameworkVersion.compareTo(scFrameworkVersion);
191     }
192 
193     public int hashCode() {
194         return _scFrameworkVersion.hashCode();
195     }
196 
197     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion toEscapedModel() {
198         return _scFrameworkVersion.toEscapedModel();
199     }
200 
201     public java.lang.String toString() {
202         return _scFrameworkVersion.toString();
203     }
204 
205     public java.lang.String toXmlString() {
206         return _scFrameworkVersion.toXmlString();
207     }
208 
209     public SCFrameworkVersion getWrappedSCFrameworkVersion() {
210         return _scFrameworkVersion;
211     }
212 
213     private SCFrameworkVersion _scFrameworkVersion;
214 }