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.tags.model;
16  
17  
18  /**
19   * <a href="TagsAssetSoap.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 TagsAsset}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       TagsAsset
32   * @generated
33   */
34  public class TagsAssetWrapper implements TagsAsset {
35      public TagsAssetWrapper(TagsAsset tagsAsset) {
36          _tagsAsset = tagsAsset;
37      }
38  
39      public long getPrimaryKey() {
40          return _tagsAsset.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _tagsAsset.setPrimaryKey(pk);
45      }
46  
47      public long getAssetId() {
48          return _tagsAsset.getAssetId();
49      }
50  
51      public void setAssetId(long assetId) {
52          _tagsAsset.setAssetId(assetId);
53      }
54  
55      public long getGroupId() {
56          return _tagsAsset.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _tagsAsset.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _tagsAsset.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _tagsAsset.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _tagsAsset.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _tagsAsset.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.SystemException {
81          return _tagsAsset.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _tagsAsset.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _tagsAsset.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _tagsAsset.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _tagsAsset.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _tagsAsset.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _tagsAsset.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _tagsAsset.setModifiedDate(modifiedDate);
110     }
111 
112     public java.lang.String getClassName() {
113         return _tagsAsset.getClassName();
114     }
115 
116     public long getClassNameId() {
117         return _tagsAsset.getClassNameId();
118     }
119 
120     public void setClassNameId(long classNameId) {
121         _tagsAsset.setClassNameId(classNameId);
122     }
123 
124     public long getClassPK() {
125         return _tagsAsset.getClassPK();
126     }
127 
128     public void setClassPK(long classPK) {
129         _tagsAsset.setClassPK(classPK);
130     }
131 
132     public java.util.Date getStartDate() {
133         return _tagsAsset.getStartDate();
134     }
135 
136     public void setStartDate(java.util.Date startDate) {
137         _tagsAsset.setStartDate(startDate);
138     }
139 
140     public java.util.Date getEndDate() {
141         return _tagsAsset.getEndDate();
142     }
143 
144     public void setEndDate(java.util.Date endDate) {
145         _tagsAsset.setEndDate(endDate);
146     }
147 
148     public java.util.Date getPublishDate() {
149         return _tagsAsset.getPublishDate();
150     }
151 
152     public void setPublishDate(java.util.Date publishDate) {
153         _tagsAsset.setPublishDate(publishDate);
154     }
155 
156     public java.util.Date getExpirationDate() {
157         return _tagsAsset.getExpirationDate();
158     }
159 
160     public void setExpirationDate(java.util.Date expirationDate) {
161         _tagsAsset.setExpirationDate(expirationDate);
162     }
163 
164     public java.lang.String getMimeType() {
165         return _tagsAsset.getMimeType();
166     }
167 
168     public void setMimeType(java.lang.String mimeType) {
169         _tagsAsset.setMimeType(mimeType);
170     }
171 
172     public java.lang.String getTitle() {
173         return _tagsAsset.getTitle();
174     }
175 
176     public void setTitle(java.lang.String title) {
177         _tagsAsset.setTitle(title);
178     }
179 
180     public java.lang.String getDescription() {
181         return _tagsAsset.getDescription();
182     }
183 
184     public void setDescription(java.lang.String description) {
185         _tagsAsset.setDescription(description);
186     }
187 
188     public java.lang.String getSummary() {
189         return _tagsAsset.getSummary();
190     }
191 
192     public void setSummary(java.lang.String summary) {
193         _tagsAsset.setSummary(summary);
194     }
195 
196     public java.lang.String getUrl() {
197         return _tagsAsset.getUrl();
198     }
199 
200     public void setUrl(java.lang.String url) {
201         _tagsAsset.setUrl(url);
202     }
203 
204     public int getHeight() {
205         return _tagsAsset.getHeight();
206     }
207 
208     public void setHeight(int height) {
209         _tagsAsset.setHeight(height);
210     }
211 
212     public int getWidth() {
213         return _tagsAsset.getWidth();
214     }
215 
216     public void setWidth(int width) {
217         _tagsAsset.setWidth(width);
218     }
219 
220     public double getPriority() {
221         return _tagsAsset.getPriority();
222     }
223 
224     public void setPriority(double priority) {
225         _tagsAsset.setPriority(priority);
226     }
227 
228     public int getViewCount() {
229         return _tagsAsset.getViewCount();
230     }
231 
232     public void setViewCount(int viewCount) {
233         _tagsAsset.setViewCount(viewCount);
234     }
235 
236     public com.liferay.portlet.tags.model.TagsAsset toEscapedModel() {
237         return _tagsAsset.toEscapedModel();
238     }
239 
240     public boolean isNew() {
241         return _tagsAsset.isNew();
242     }
243 
244     public boolean setNew(boolean n) {
245         return _tagsAsset.setNew(n);
246     }
247 
248     public boolean isCachedModel() {
249         return _tagsAsset.isCachedModel();
250     }
251 
252     public void setCachedModel(boolean cachedModel) {
253         _tagsAsset.setCachedModel(cachedModel);
254     }
255 
256     public boolean isEscapedModel() {
257         return _tagsAsset.isEscapedModel();
258     }
259 
260     public void setEscapedModel(boolean escapedModel) {
261         _tagsAsset.setEscapedModel(escapedModel);
262     }
263 
264     public java.io.Serializable getPrimaryKeyObj() {
265         return _tagsAsset.getPrimaryKeyObj();
266     }
267 
268     public java.lang.Object clone() {
269         return _tagsAsset.clone();
270     }
271 
272     public int compareTo(com.liferay.portlet.tags.model.TagsAsset tagsAsset) {
273         return _tagsAsset.compareTo(tagsAsset);
274     }
275 
276     public int hashCode() {
277         return _tagsAsset.hashCode();
278     }
279 
280     public java.lang.String toString() {
281         return _tagsAsset.toString();
282     }
283 
284     public java.lang.String toXmlString() {
285         return _tagsAsset.toXmlString();
286     }
287 
288     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries()
289         throws com.liferay.portal.SystemException {
290         return _tagsAsset.getEntries();
291     }
292 
293     public TagsAsset getWrappedTagsAsset() {
294         return _tagsAsset;
295     }
296 
297     private TagsAsset _tagsAsset;
298 }