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