001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.asset.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetTag}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetTag
024     * @generated
025     */
026    public class AssetTagWrapper implements AssetTag {
027            public AssetTagWrapper(AssetTag assetTag) {
028                    _assetTag = assetTag;
029            }
030    
031            /**
032            * Gets the primary key of this asset tag.
033            *
034            * @return the primary key of this asset tag
035            */
036            public long getPrimaryKey() {
037                    return _assetTag.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this asset tag
042            *
043            * @param pk the primary key of this asset tag
044            */
045            public void setPrimaryKey(long pk) {
046                    _assetTag.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the tag id of this asset tag.
051            *
052            * @return the tag id of this asset tag
053            */
054            public long getTagId() {
055                    return _assetTag.getTagId();
056            }
057    
058            /**
059            * Sets the tag id of this asset tag.
060            *
061            * @param tagId the tag id of this asset tag
062            */
063            public void setTagId(long tagId) {
064                    _assetTag.setTagId(tagId);
065            }
066    
067            /**
068            * Gets the group id of this asset tag.
069            *
070            * @return the group id of this asset tag
071            */
072            public long getGroupId() {
073                    return _assetTag.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this asset tag.
078            *
079            * @param groupId the group id of this asset tag
080            */
081            public void setGroupId(long groupId) {
082                    _assetTag.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this asset tag.
087            *
088            * @return the company id of this asset tag
089            */
090            public long getCompanyId() {
091                    return _assetTag.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this asset tag.
096            *
097            * @param companyId the company id of this asset tag
098            */
099            public void setCompanyId(long companyId) {
100                    _assetTag.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this asset tag.
105            *
106            * @return the user id of this asset tag
107            */
108            public long getUserId() {
109                    return _assetTag.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this asset tag.
114            *
115            * @param userId the user id of this asset tag
116            */
117            public void setUserId(long userId) {
118                    _assetTag.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this asset tag.
123            *
124            * @return the user uuid of this asset tag
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _assetTag.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this asset tag.
134            *
135            * @param userUuid the user uuid of this asset tag
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _assetTag.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the user name of this asset tag.
143            *
144            * @return the user name of this asset tag
145            */
146            public java.lang.String getUserName() {
147                    return _assetTag.getUserName();
148            }
149    
150            /**
151            * Sets the user name of this asset tag.
152            *
153            * @param userName the user name of this asset tag
154            */
155            public void setUserName(java.lang.String userName) {
156                    _assetTag.setUserName(userName);
157            }
158    
159            /**
160            * Gets the create date of this asset tag.
161            *
162            * @return the create date of this asset tag
163            */
164            public java.util.Date getCreateDate() {
165                    return _assetTag.getCreateDate();
166            }
167    
168            /**
169            * Sets the create date of this asset tag.
170            *
171            * @param createDate the create date of this asset tag
172            */
173            public void setCreateDate(java.util.Date createDate) {
174                    _assetTag.setCreateDate(createDate);
175            }
176    
177            /**
178            * Gets the modified date of this asset tag.
179            *
180            * @return the modified date of this asset tag
181            */
182            public java.util.Date getModifiedDate() {
183                    return _assetTag.getModifiedDate();
184            }
185    
186            /**
187            * Sets the modified date of this asset tag.
188            *
189            * @param modifiedDate the modified date of this asset tag
190            */
191            public void setModifiedDate(java.util.Date modifiedDate) {
192                    _assetTag.setModifiedDate(modifiedDate);
193            }
194    
195            /**
196            * Gets the name of this asset tag.
197            *
198            * @return the name of this asset tag
199            */
200            public java.lang.String getName() {
201                    return _assetTag.getName();
202            }
203    
204            /**
205            * Sets the name of this asset tag.
206            *
207            * @param name the name of this asset tag
208            */
209            public void setName(java.lang.String name) {
210                    _assetTag.setName(name);
211            }
212    
213            /**
214            * Gets the asset count of this asset tag.
215            *
216            * @return the asset count of this asset tag
217            */
218            public int getAssetCount() {
219                    return _assetTag.getAssetCount();
220            }
221    
222            /**
223            * Sets the asset count of this asset tag.
224            *
225            * @param assetCount the asset count of this asset tag
226            */
227            public void setAssetCount(int assetCount) {
228                    _assetTag.setAssetCount(assetCount);
229            }
230    
231            public boolean isNew() {
232                    return _assetTag.isNew();
233            }
234    
235            public void setNew(boolean n) {
236                    _assetTag.setNew(n);
237            }
238    
239            public boolean isCachedModel() {
240                    return _assetTag.isCachedModel();
241            }
242    
243            public void setCachedModel(boolean cachedModel) {
244                    _assetTag.setCachedModel(cachedModel);
245            }
246    
247            public boolean isEscapedModel() {
248                    return _assetTag.isEscapedModel();
249            }
250    
251            public void setEscapedModel(boolean escapedModel) {
252                    _assetTag.setEscapedModel(escapedModel);
253            }
254    
255            public java.io.Serializable getPrimaryKeyObj() {
256                    return _assetTag.getPrimaryKeyObj();
257            }
258    
259            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
260                    return _assetTag.getExpandoBridge();
261            }
262    
263            public void setExpandoBridgeAttributes(
264                    com.liferay.portal.service.ServiceContext serviceContext) {
265                    _assetTag.setExpandoBridgeAttributes(serviceContext);
266            }
267    
268            public java.lang.Object clone() {
269                    return _assetTag.clone();
270            }
271    
272            public int compareTo(com.liferay.portlet.asset.model.AssetTag assetTag) {
273                    return _assetTag.compareTo(assetTag);
274            }
275    
276            public int hashCode() {
277                    return _assetTag.hashCode();
278            }
279    
280            public com.liferay.portlet.asset.model.AssetTag toEscapedModel() {
281                    return _assetTag.toEscapedModel();
282            }
283    
284            public java.lang.String toString() {
285                    return _assetTag.toString();
286            }
287    
288            public java.lang.String toXmlString() {
289                    return _assetTag.toXmlString();
290            }
291    
292            public AssetTag getWrappedAssetTag() {
293                    return _assetTag;
294            }
295    
296            private AssetTag _assetTag;
297    }