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