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 AssetTagProperty}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetTagProperty
024     * @generated
025     */
026    public class AssetTagPropertyWrapper implements AssetTagProperty {
027            public AssetTagPropertyWrapper(AssetTagProperty assetTagProperty) {
028                    _assetTagProperty = assetTagProperty;
029            }
030    
031            /**
032            * Gets the primary key of this asset tag property.
033            *
034            * @return the primary key of this asset tag property
035            */
036            public long getPrimaryKey() {
037                    return _assetTagProperty.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this asset tag property
042            *
043            * @param pk the primary key of this asset tag property
044            */
045            public void setPrimaryKey(long pk) {
046                    _assetTagProperty.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the tag property id of this asset tag property.
051            *
052            * @return the tag property id of this asset tag property
053            */
054            public long getTagPropertyId() {
055                    return _assetTagProperty.getTagPropertyId();
056            }
057    
058            /**
059            * Sets the tag property id of this asset tag property.
060            *
061            * @param tagPropertyId the tag property id of this asset tag property
062            */
063            public void setTagPropertyId(long tagPropertyId) {
064                    _assetTagProperty.setTagPropertyId(tagPropertyId);
065            }
066    
067            /**
068            * Gets the company id of this asset tag property.
069            *
070            * @return the company id of this asset tag property
071            */
072            public long getCompanyId() {
073                    return _assetTagProperty.getCompanyId();
074            }
075    
076            /**
077            * Sets the company id of this asset tag property.
078            *
079            * @param companyId the company id of this asset tag property
080            */
081            public void setCompanyId(long companyId) {
082                    _assetTagProperty.setCompanyId(companyId);
083            }
084    
085            /**
086            * Gets the user id of this asset tag property.
087            *
088            * @return the user id of this asset tag property
089            */
090            public long getUserId() {
091                    return _assetTagProperty.getUserId();
092            }
093    
094            /**
095            * Sets the user id of this asset tag property.
096            *
097            * @param userId the user id of this asset tag property
098            */
099            public void setUserId(long userId) {
100                    _assetTagProperty.setUserId(userId);
101            }
102    
103            /**
104            * Gets the user uuid of this asset tag property.
105            *
106            * @return the user uuid of this asset tag property
107            * @throws SystemException if a system exception occurred
108            */
109            public java.lang.String getUserUuid()
110                    throws com.liferay.portal.kernel.exception.SystemException {
111                    return _assetTagProperty.getUserUuid();
112            }
113    
114            /**
115            * Sets the user uuid of this asset tag property.
116            *
117            * @param userUuid the user uuid of this asset tag property
118            */
119            public void setUserUuid(java.lang.String userUuid) {
120                    _assetTagProperty.setUserUuid(userUuid);
121            }
122    
123            /**
124            * Gets the user name of this asset tag property.
125            *
126            * @return the user name of this asset tag property
127            */
128            public java.lang.String getUserName() {
129                    return _assetTagProperty.getUserName();
130            }
131    
132            /**
133            * Sets the user name of this asset tag property.
134            *
135            * @param userName the user name of this asset tag property
136            */
137            public void setUserName(java.lang.String userName) {
138                    _assetTagProperty.setUserName(userName);
139            }
140    
141            /**
142            * Gets the create date of this asset tag property.
143            *
144            * @return the create date of this asset tag property
145            */
146            public java.util.Date getCreateDate() {
147                    return _assetTagProperty.getCreateDate();
148            }
149    
150            /**
151            * Sets the create date of this asset tag property.
152            *
153            * @param createDate the create date of this asset tag property
154            */
155            public void setCreateDate(java.util.Date createDate) {
156                    _assetTagProperty.setCreateDate(createDate);
157            }
158    
159            /**
160            * Gets the modified date of this asset tag property.
161            *
162            * @return the modified date of this asset tag property
163            */
164            public java.util.Date getModifiedDate() {
165                    return _assetTagProperty.getModifiedDate();
166            }
167    
168            /**
169            * Sets the modified date of this asset tag property.
170            *
171            * @param modifiedDate the modified date of this asset tag property
172            */
173            public void setModifiedDate(java.util.Date modifiedDate) {
174                    _assetTagProperty.setModifiedDate(modifiedDate);
175            }
176    
177            /**
178            * Gets the tag id of this asset tag property.
179            *
180            * @return the tag id of this asset tag property
181            */
182            public long getTagId() {
183                    return _assetTagProperty.getTagId();
184            }
185    
186            /**
187            * Sets the tag id of this asset tag property.
188            *
189            * @param tagId the tag id of this asset tag property
190            */
191            public void setTagId(long tagId) {
192                    _assetTagProperty.setTagId(tagId);
193            }
194    
195            /**
196            * Gets the key of this asset tag property.
197            *
198            * @return the key of this asset tag property
199            */
200            public java.lang.String getKey() {
201                    return _assetTagProperty.getKey();
202            }
203    
204            /**
205            * Sets the key of this asset tag property.
206            *
207            * @param key the key of this asset tag property
208            */
209            public void setKey(java.lang.String key) {
210                    _assetTagProperty.setKey(key);
211            }
212    
213            /**
214            * Gets the value of this asset tag property.
215            *
216            * @return the value of this asset tag property
217            */
218            public java.lang.String getValue() {
219                    return _assetTagProperty.getValue();
220            }
221    
222            /**
223            * Sets the value of this asset tag property.
224            *
225            * @param value the value of this asset tag property
226            */
227            public void setValue(java.lang.String value) {
228                    _assetTagProperty.setValue(value);
229            }
230    
231            public boolean isNew() {
232                    return _assetTagProperty.isNew();
233            }
234    
235            public void setNew(boolean n) {
236                    _assetTagProperty.setNew(n);
237            }
238    
239            public boolean isCachedModel() {
240                    return _assetTagProperty.isCachedModel();
241            }
242    
243            public void setCachedModel(boolean cachedModel) {
244                    _assetTagProperty.setCachedModel(cachedModel);
245            }
246    
247            public boolean isEscapedModel() {
248                    return _assetTagProperty.isEscapedModel();
249            }
250    
251            public void setEscapedModel(boolean escapedModel) {
252                    _assetTagProperty.setEscapedModel(escapedModel);
253            }
254    
255            public java.io.Serializable getPrimaryKeyObj() {
256                    return _assetTagProperty.getPrimaryKeyObj();
257            }
258    
259            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
260                    return _assetTagProperty.getExpandoBridge();
261            }
262    
263            public void setExpandoBridgeAttributes(
264                    com.liferay.portal.service.ServiceContext serviceContext) {
265                    _assetTagProperty.setExpandoBridgeAttributes(serviceContext);
266            }
267    
268            public java.lang.Object clone() {
269                    return _assetTagProperty.clone();
270            }
271    
272            public int compareTo(
273                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty) {
274                    return _assetTagProperty.compareTo(assetTagProperty);
275            }
276    
277            public int hashCode() {
278                    return _assetTagProperty.hashCode();
279            }
280    
281            public com.liferay.portlet.asset.model.AssetTagProperty toEscapedModel() {
282                    return _assetTagProperty.toEscapedModel();
283            }
284    
285            public java.lang.String toString() {
286                    return _assetTagProperty.toString();
287            }
288    
289            public java.lang.String toXmlString() {
290                    return _assetTagProperty.toXmlString();
291            }
292    
293            public AssetTagProperty getWrappedAssetTagProperty() {
294                    return _assetTagProperty;
295            }
296    
297            private AssetTagProperty _assetTagProperty;
298    }