1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.tags.model;
24  
25  
26  /**
27   * <a href="TagsAssetSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link TagsAsset}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       TagsAsset
40   * @generated
41   */
42  public class TagsAssetWrapper implements TagsAsset {
43      public TagsAssetWrapper(TagsAsset tagsAsset) {
44          _tagsAsset = tagsAsset;
45      }
46  
47      public long getPrimaryKey() {
48          return _tagsAsset.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _tagsAsset.setPrimaryKey(pk);
53      }
54  
55      public long getAssetId() {
56          return _tagsAsset.getAssetId();
57      }
58  
59      public void setAssetId(long assetId) {
60          _tagsAsset.setAssetId(assetId);
61      }
62  
63      public long getGroupId() {
64          return _tagsAsset.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _tagsAsset.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _tagsAsset.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _tagsAsset.setCompanyId(companyId);
77      }
78  
79      public long getUserId() {
80          return _tagsAsset.getUserId();
81      }
82  
83      public void setUserId(long userId) {
84          _tagsAsset.setUserId(userId);
85      }
86  
87      public java.lang.String getUserUuid()
88          throws com.liferay.portal.SystemException {
89          return _tagsAsset.getUserUuid();
90      }
91  
92      public void setUserUuid(java.lang.String userUuid) {
93          _tagsAsset.setUserUuid(userUuid);
94      }
95  
96      public java.lang.String getUserName() {
97          return _tagsAsset.getUserName();
98      }
99  
100     public void setUserName(java.lang.String userName) {
101         _tagsAsset.setUserName(userName);
102     }
103 
104     public java.util.Date getCreateDate() {
105         return _tagsAsset.getCreateDate();
106     }
107 
108     public void setCreateDate(java.util.Date createDate) {
109         _tagsAsset.setCreateDate(createDate);
110     }
111 
112     public java.util.Date getModifiedDate() {
113         return _tagsAsset.getModifiedDate();
114     }
115 
116     public void setModifiedDate(java.util.Date modifiedDate) {
117         _tagsAsset.setModifiedDate(modifiedDate);
118     }
119 
120     public java.lang.String getClassName() {
121         return _tagsAsset.getClassName();
122     }
123 
124     public long getClassNameId() {
125         return _tagsAsset.getClassNameId();
126     }
127 
128     public void setClassNameId(long classNameId) {
129         _tagsAsset.setClassNameId(classNameId);
130     }
131 
132     public long getClassPK() {
133         return _tagsAsset.getClassPK();
134     }
135 
136     public void setClassPK(long classPK) {
137         _tagsAsset.setClassPK(classPK);
138     }
139 
140     public boolean getVisible() {
141         return _tagsAsset.getVisible();
142     }
143 
144     public boolean isVisible() {
145         return _tagsAsset.isVisible();
146     }
147 
148     public void setVisible(boolean visible) {
149         _tagsAsset.setVisible(visible);
150     }
151 
152     public java.util.Date getStartDate() {
153         return _tagsAsset.getStartDate();
154     }
155 
156     public void setStartDate(java.util.Date startDate) {
157         _tagsAsset.setStartDate(startDate);
158     }
159 
160     public java.util.Date getEndDate() {
161         return _tagsAsset.getEndDate();
162     }
163 
164     public void setEndDate(java.util.Date endDate) {
165         _tagsAsset.setEndDate(endDate);
166     }
167 
168     public java.util.Date getPublishDate() {
169         return _tagsAsset.getPublishDate();
170     }
171 
172     public void setPublishDate(java.util.Date publishDate) {
173         _tagsAsset.setPublishDate(publishDate);
174     }
175 
176     public java.util.Date getExpirationDate() {
177         return _tagsAsset.getExpirationDate();
178     }
179 
180     public void setExpirationDate(java.util.Date expirationDate) {
181         _tagsAsset.setExpirationDate(expirationDate);
182     }
183 
184     public java.lang.String getMimeType() {
185         return _tagsAsset.getMimeType();
186     }
187 
188     public void setMimeType(java.lang.String mimeType) {
189         _tagsAsset.setMimeType(mimeType);
190     }
191 
192     public java.lang.String getTitle() {
193         return _tagsAsset.getTitle();
194     }
195 
196     public void setTitle(java.lang.String title) {
197         _tagsAsset.setTitle(title);
198     }
199 
200     public java.lang.String getDescription() {
201         return _tagsAsset.getDescription();
202     }
203 
204     public void setDescription(java.lang.String description) {
205         _tagsAsset.setDescription(description);
206     }
207 
208     public java.lang.String getSummary() {
209         return _tagsAsset.getSummary();
210     }
211 
212     public void setSummary(java.lang.String summary) {
213         _tagsAsset.setSummary(summary);
214     }
215 
216     public java.lang.String getUrl() {
217         return _tagsAsset.getUrl();
218     }
219 
220     public void setUrl(java.lang.String url) {
221         _tagsAsset.setUrl(url);
222     }
223 
224     public int getHeight() {
225         return _tagsAsset.getHeight();
226     }
227 
228     public void setHeight(int height) {
229         _tagsAsset.setHeight(height);
230     }
231 
232     public int getWidth() {
233         return _tagsAsset.getWidth();
234     }
235 
236     public void setWidth(int width) {
237         _tagsAsset.setWidth(width);
238     }
239 
240     public double getPriority() {
241         return _tagsAsset.getPriority();
242     }
243 
244     public void setPriority(double priority) {
245         _tagsAsset.setPriority(priority);
246     }
247 
248     public int getViewCount() {
249         return _tagsAsset.getViewCount();
250     }
251 
252     public void setViewCount(int viewCount) {
253         _tagsAsset.setViewCount(viewCount);
254     }
255 
256     public com.liferay.portlet.tags.model.TagsAsset toEscapedModel() {
257         return _tagsAsset.toEscapedModel();
258     }
259 
260     public boolean isNew() {
261         return _tagsAsset.isNew();
262     }
263 
264     public boolean setNew(boolean n) {
265         return _tagsAsset.setNew(n);
266     }
267 
268     public boolean isCachedModel() {
269         return _tagsAsset.isCachedModel();
270     }
271 
272     public void setCachedModel(boolean cachedModel) {
273         _tagsAsset.setCachedModel(cachedModel);
274     }
275 
276     public boolean isEscapedModel() {
277         return _tagsAsset.isEscapedModel();
278     }
279 
280     public void setEscapedModel(boolean escapedModel) {
281         _tagsAsset.setEscapedModel(escapedModel);
282     }
283 
284     public java.io.Serializable getPrimaryKeyObj() {
285         return _tagsAsset.getPrimaryKeyObj();
286     }
287 
288     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
289         return _tagsAsset.getExpandoBridge();
290     }
291 
292     public void setExpandoBridgeAttributes(
293         com.liferay.portal.service.ServiceContext serviceContext) {
294         _tagsAsset.setExpandoBridgeAttributes(serviceContext);
295     }
296 
297     public java.lang.Object clone() {
298         return _tagsAsset.clone();
299     }
300 
301     public int compareTo(com.liferay.portlet.tags.model.TagsAsset tagsAsset) {
302         return _tagsAsset.compareTo(tagsAsset);
303     }
304 
305     public int hashCode() {
306         return _tagsAsset.hashCode();
307     }
308 
309     public java.lang.String toString() {
310         return _tagsAsset.toString();
311     }
312 
313     public java.lang.String toXmlString() {
314         return _tagsAsset.toXmlString();
315     }
316 
317     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getCategories()
318         throws com.liferay.portal.SystemException {
319         return _tagsAsset.getCategories();
320     }
321 
322     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries()
323         throws com.liferay.portal.SystemException {
324         return _tagsAsset.getEntries();
325     }
326 
327     public TagsAsset getWrappedTagsAsset() {
328         return _tagsAsset;
329     }
330 
331     private TagsAsset _tagsAsset;
332 }