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="AssetCategorySoap.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 AssetCategory}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetCategory
32   * @generated
33   */
34  public class AssetCategoryWrapper implements AssetCategory {
35      public AssetCategoryWrapper(AssetCategory assetCategory) {
36          _assetCategory = assetCategory;
37      }
38  
39      public long getPrimaryKey() {
40          return _assetCategory.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _assetCategory.setPrimaryKey(pk);
45      }
46  
47      public java.lang.String getUuid() {
48          return _assetCategory.getUuid();
49      }
50  
51      public void setUuid(java.lang.String uuid) {
52          _assetCategory.setUuid(uuid);
53      }
54  
55      public long getCategoryId() {
56          return _assetCategory.getCategoryId();
57      }
58  
59      public void setCategoryId(long categoryId) {
60          _assetCategory.setCategoryId(categoryId);
61      }
62  
63      public long getGroupId() {
64          return _assetCategory.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _assetCategory.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _assetCategory.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _assetCategory.setCompanyId(companyId);
77      }
78  
79      public long getUserId() {
80          return _assetCategory.getUserId();
81      }
82  
83      public void setUserId(long userId) {
84          _assetCategory.setUserId(userId);
85      }
86  
87      public java.lang.String getUserUuid()
88          throws com.liferay.portal.kernel.exception.SystemException {
89          return _assetCategory.getUserUuid();
90      }
91  
92      public void setUserUuid(java.lang.String userUuid) {
93          _assetCategory.setUserUuid(userUuid);
94      }
95  
96      public java.lang.String getUserName() {
97          return _assetCategory.getUserName();
98      }
99  
100     public void setUserName(java.lang.String userName) {
101         _assetCategory.setUserName(userName);
102     }
103 
104     public java.util.Date getCreateDate() {
105         return _assetCategory.getCreateDate();
106     }
107 
108     public void setCreateDate(java.util.Date createDate) {
109         _assetCategory.setCreateDate(createDate);
110     }
111 
112     public java.util.Date getModifiedDate() {
113         return _assetCategory.getModifiedDate();
114     }
115 
116     public void setModifiedDate(java.util.Date modifiedDate) {
117         _assetCategory.setModifiedDate(modifiedDate);
118     }
119 
120     public long getParentCategoryId() {
121         return _assetCategory.getParentCategoryId();
122     }
123 
124     public void setParentCategoryId(long parentCategoryId) {
125         _assetCategory.setParentCategoryId(parentCategoryId);
126     }
127 
128     public long getLeftCategoryId() {
129         return _assetCategory.getLeftCategoryId();
130     }
131 
132     public void setLeftCategoryId(long leftCategoryId) {
133         _assetCategory.setLeftCategoryId(leftCategoryId);
134     }
135 
136     public long getRightCategoryId() {
137         return _assetCategory.getRightCategoryId();
138     }
139 
140     public void setRightCategoryId(long rightCategoryId) {
141         _assetCategory.setRightCategoryId(rightCategoryId);
142     }
143 
144     public java.lang.String getName() {
145         return _assetCategory.getName();
146     }
147 
148     public void setName(java.lang.String name) {
149         _assetCategory.setName(name);
150     }
151 
152     public java.lang.String getTitle() {
153         return _assetCategory.getTitle();
154     }
155 
156     public java.lang.String getTitle(java.util.Locale locale) {
157         return _assetCategory.getTitle(locale);
158     }
159 
160     public java.lang.String getTitle(java.util.Locale locale, boolean useDefault) {
161         return _assetCategory.getTitle(locale, useDefault);
162     }
163 
164     public java.lang.String getTitle(java.lang.String languageId) {
165         return _assetCategory.getTitle(languageId);
166     }
167 
168     public java.lang.String getTitle(java.lang.String languageId,
169         boolean useDefault) {
170         return _assetCategory.getTitle(languageId, useDefault);
171     }
172 
173     public java.util.Map<java.util.Locale, java.lang.String> getTitleMap() {
174         return _assetCategory.getTitleMap();
175     }
176 
177     public void setTitle(java.lang.String title) {
178         _assetCategory.setTitle(title);
179     }
180 
181     public void setTitle(java.util.Locale locale, java.lang.String title) {
182         _assetCategory.setTitle(locale, title);
183     }
184 
185     public void setTitleMap(
186         java.util.Map<java.util.Locale, java.lang.String> titleMap) {
187         _assetCategory.setTitleMap(titleMap);
188     }
189 
190     public long getVocabularyId() {
191         return _assetCategory.getVocabularyId();
192     }
193 
194     public void setVocabularyId(long vocabularyId) {
195         _assetCategory.setVocabularyId(vocabularyId);
196     }
197 
198     public com.liferay.portlet.asset.model.AssetCategory toEscapedModel() {
199         return _assetCategory.toEscapedModel();
200     }
201 
202     public boolean isNew() {
203         return _assetCategory.isNew();
204     }
205 
206     public boolean setNew(boolean n) {
207         return _assetCategory.setNew(n);
208     }
209 
210     public boolean isCachedModel() {
211         return _assetCategory.isCachedModel();
212     }
213 
214     public void setCachedModel(boolean cachedModel) {
215         _assetCategory.setCachedModel(cachedModel);
216     }
217 
218     public boolean isEscapedModel() {
219         return _assetCategory.isEscapedModel();
220     }
221 
222     public void setEscapedModel(boolean escapedModel) {
223         _assetCategory.setEscapedModel(escapedModel);
224     }
225 
226     public java.io.Serializable getPrimaryKeyObj() {
227         return _assetCategory.getPrimaryKeyObj();
228     }
229 
230     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
231         return _assetCategory.getExpandoBridge();
232     }
233 
234     public void setExpandoBridgeAttributes(
235         com.liferay.portal.service.ServiceContext serviceContext) {
236         _assetCategory.setExpandoBridgeAttributes(serviceContext);
237     }
238 
239     public java.lang.Object clone() {
240         return _assetCategory.clone();
241     }
242 
243     public int compareTo(
244         com.liferay.portlet.asset.model.AssetCategory assetCategory) {
245         return _assetCategory.compareTo(assetCategory);
246     }
247 
248     public int hashCode() {
249         return _assetCategory.hashCode();
250     }
251 
252     public java.lang.String toString() {
253         return _assetCategory.toString();
254     }
255 
256     public java.lang.String toXmlString() {
257         return _assetCategory.toXmlString();
258     }
259 
260     public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getAncestors()
261         throws com.liferay.portal.kernel.exception.PortalException,
262             com.liferay.portal.kernel.exception.SystemException {
263         return _assetCategory.getAncestors();
264     }
265 
266     public boolean isRootCategory() {
267         return _assetCategory.isRootCategory();
268     }
269 
270     public AssetCategory getWrappedAssetCategory() {
271         return _assetCategory;
272     }
273 
274     private AssetCategory _assetCategory;
275 }