001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.asset.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetVocabulary}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetVocabulary
024     * @generated
025     */
026    public class AssetVocabularyWrapper implements AssetVocabulary {
027            public AssetVocabularyWrapper(AssetVocabulary assetVocabulary) {
028                    _assetVocabulary = assetVocabulary;
029            }
030    
031            public long getPrimaryKey() {
032                    return _assetVocabulary.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _assetVocabulary.setPrimaryKey(pk);
037            }
038    
039            public java.lang.String getUuid() {
040                    return _assetVocabulary.getUuid();
041            }
042    
043            public void setUuid(java.lang.String uuid) {
044                    _assetVocabulary.setUuid(uuid);
045            }
046    
047            public long getVocabularyId() {
048                    return _assetVocabulary.getVocabularyId();
049            }
050    
051            public void setVocabularyId(long vocabularyId) {
052                    _assetVocabulary.setVocabularyId(vocabularyId);
053            }
054    
055            public long getGroupId() {
056                    return _assetVocabulary.getGroupId();
057            }
058    
059            public void setGroupId(long groupId) {
060                    _assetVocabulary.setGroupId(groupId);
061            }
062    
063            public long getCompanyId() {
064                    return _assetVocabulary.getCompanyId();
065            }
066    
067            public void setCompanyId(long companyId) {
068                    _assetVocabulary.setCompanyId(companyId);
069            }
070    
071            public long getUserId() {
072                    return _assetVocabulary.getUserId();
073            }
074    
075            public void setUserId(long userId) {
076                    _assetVocabulary.setUserId(userId);
077            }
078    
079            public java.lang.String getUserUuid()
080                    throws com.liferay.portal.kernel.exception.SystemException {
081                    return _assetVocabulary.getUserUuid();
082            }
083    
084            public void setUserUuid(java.lang.String userUuid) {
085                    _assetVocabulary.setUserUuid(userUuid);
086            }
087    
088            public java.lang.String getUserName() {
089                    return _assetVocabulary.getUserName();
090            }
091    
092            public void setUserName(java.lang.String userName) {
093                    _assetVocabulary.setUserName(userName);
094            }
095    
096            public java.util.Date getCreateDate() {
097                    return _assetVocabulary.getCreateDate();
098            }
099    
100            public void setCreateDate(java.util.Date createDate) {
101                    _assetVocabulary.setCreateDate(createDate);
102            }
103    
104            public java.util.Date getModifiedDate() {
105                    return _assetVocabulary.getModifiedDate();
106            }
107    
108            public void setModifiedDate(java.util.Date modifiedDate) {
109                    _assetVocabulary.setModifiedDate(modifiedDate);
110            }
111    
112            public java.lang.String getName() {
113                    return _assetVocabulary.getName();
114            }
115    
116            public void setName(java.lang.String name) {
117                    _assetVocabulary.setName(name);
118            }
119    
120            public java.lang.String getTitle() {
121                    return _assetVocabulary.getTitle();
122            }
123    
124            public java.lang.String getTitle(java.util.Locale locale) {
125                    return _assetVocabulary.getTitle(locale);
126            }
127    
128            public java.lang.String getTitle(java.util.Locale locale, boolean useDefault) {
129                    return _assetVocabulary.getTitle(locale, useDefault);
130            }
131    
132            public java.lang.String getTitle(java.lang.String languageId) {
133                    return _assetVocabulary.getTitle(languageId);
134            }
135    
136            public java.lang.String getTitle(java.lang.String languageId,
137                    boolean useDefault) {
138                    return _assetVocabulary.getTitle(languageId, useDefault);
139            }
140    
141            public java.util.Map<java.util.Locale, java.lang.String> getTitleMap() {
142                    return _assetVocabulary.getTitleMap();
143            }
144    
145            public void setTitle(java.lang.String title) {
146                    _assetVocabulary.setTitle(title);
147            }
148    
149            public void setTitle(java.util.Locale locale, java.lang.String title) {
150                    _assetVocabulary.setTitle(locale, title);
151            }
152    
153            public void setTitleMap(
154                    java.util.Map<java.util.Locale, java.lang.String> titleMap) {
155                    _assetVocabulary.setTitleMap(titleMap);
156            }
157    
158            public java.lang.String getDescription() {
159                    return _assetVocabulary.getDescription();
160            }
161    
162            public java.lang.String getDescription(java.util.Locale locale) {
163                    return _assetVocabulary.getDescription(locale);
164            }
165    
166            public java.lang.String getDescription(java.util.Locale locale,
167                    boolean useDefault) {
168                    return _assetVocabulary.getDescription(locale, useDefault);
169            }
170    
171            public java.lang.String getDescription(java.lang.String languageId) {
172                    return _assetVocabulary.getDescription(languageId);
173            }
174    
175            public java.lang.String getDescription(java.lang.String languageId,
176                    boolean useDefault) {
177                    return _assetVocabulary.getDescription(languageId, useDefault);
178            }
179    
180            public java.util.Map<java.util.Locale, java.lang.String> getDescriptionMap() {
181                    return _assetVocabulary.getDescriptionMap();
182            }
183    
184            public void setDescription(java.lang.String description) {
185                    _assetVocabulary.setDescription(description);
186            }
187    
188            public void setDescription(java.util.Locale locale,
189                    java.lang.String description) {
190                    _assetVocabulary.setDescription(locale, description);
191            }
192    
193            public void setDescriptionMap(
194                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap) {
195                    _assetVocabulary.setDescriptionMap(descriptionMap);
196            }
197    
198            public java.lang.String getSettings() {
199                    return _assetVocabulary.getSettings();
200            }
201    
202            public void setSettings(java.lang.String settings) {
203                    _assetVocabulary.setSettings(settings);
204            }
205    
206            public com.liferay.portlet.asset.model.AssetVocabulary toEscapedModel() {
207                    return _assetVocabulary.toEscapedModel();
208            }
209    
210            public boolean isNew() {
211                    return _assetVocabulary.isNew();
212            }
213    
214            public void setNew(boolean n) {
215                    _assetVocabulary.setNew(n);
216            }
217    
218            public boolean isCachedModel() {
219                    return _assetVocabulary.isCachedModel();
220            }
221    
222            public void setCachedModel(boolean cachedModel) {
223                    _assetVocabulary.setCachedModel(cachedModel);
224            }
225    
226            public boolean isEscapedModel() {
227                    return _assetVocabulary.isEscapedModel();
228            }
229    
230            public void setEscapedModel(boolean escapedModel) {
231                    _assetVocabulary.setEscapedModel(escapedModel);
232            }
233    
234            public java.io.Serializable getPrimaryKeyObj() {
235                    return _assetVocabulary.getPrimaryKeyObj();
236            }
237    
238            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
239                    return _assetVocabulary.getExpandoBridge();
240            }
241    
242            public void setExpandoBridgeAttributes(
243                    com.liferay.portal.service.ServiceContext serviceContext) {
244                    _assetVocabulary.setExpandoBridgeAttributes(serviceContext);
245            }
246    
247            public java.lang.Object clone() {
248                    return _assetVocabulary.clone();
249            }
250    
251            public int compareTo(
252                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary) {
253                    return _assetVocabulary.compareTo(assetVocabulary);
254            }
255    
256            public int hashCode() {
257                    return _assetVocabulary.hashCode();
258            }
259    
260            public java.lang.String toString() {
261                    return _assetVocabulary.toString();
262            }
263    
264            public java.lang.String toXmlString() {
265                    return _assetVocabulary.toXmlString();
266            }
267    
268            public AssetVocabulary getWrappedAssetVocabulary() {
269                    return _assetVocabulary;
270            }
271    
272            private AssetVocabulary _assetVocabulary;
273    }