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