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 AssetTagProperty}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AssetTagProperty
025     * @generated
026     */
027    public class AssetTagPropertyWrapper implements AssetTagProperty {
028            public AssetTagPropertyWrapper(AssetTagProperty assetTagProperty) {
029                    _assetTagProperty = assetTagProperty;
030            }
031    
032            public long getPrimaryKey() {
033                    return _assetTagProperty.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _assetTagProperty.setPrimaryKey(pk);
038            }
039    
040            public long getTagPropertyId() {
041                    return _assetTagProperty.getTagPropertyId();
042            }
043    
044            public void setTagPropertyId(long tagPropertyId) {
045                    _assetTagProperty.setTagPropertyId(tagPropertyId);
046            }
047    
048            public long getCompanyId() {
049                    return _assetTagProperty.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _assetTagProperty.setCompanyId(companyId);
054            }
055    
056            public long getUserId() {
057                    return _assetTagProperty.getUserId();
058            }
059    
060            public void setUserId(long userId) {
061                    _assetTagProperty.setUserId(userId);
062            }
063    
064            public java.lang.String getUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _assetTagProperty.getUserUuid();
067            }
068    
069            public void setUserUuid(java.lang.String userUuid) {
070                    _assetTagProperty.setUserUuid(userUuid);
071            }
072    
073            public java.lang.String getUserName() {
074                    return _assetTagProperty.getUserName();
075            }
076    
077            public void setUserName(java.lang.String userName) {
078                    _assetTagProperty.setUserName(userName);
079            }
080    
081            public java.util.Date getCreateDate() {
082                    return _assetTagProperty.getCreateDate();
083            }
084    
085            public void setCreateDate(java.util.Date createDate) {
086                    _assetTagProperty.setCreateDate(createDate);
087            }
088    
089            public java.util.Date getModifiedDate() {
090                    return _assetTagProperty.getModifiedDate();
091            }
092    
093            public void setModifiedDate(java.util.Date modifiedDate) {
094                    _assetTagProperty.setModifiedDate(modifiedDate);
095            }
096    
097            public long getTagId() {
098                    return _assetTagProperty.getTagId();
099            }
100    
101            public void setTagId(long tagId) {
102                    _assetTagProperty.setTagId(tagId);
103            }
104    
105            public java.lang.String getKey() {
106                    return _assetTagProperty.getKey();
107            }
108    
109            public void setKey(java.lang.String key) {
110                    _assetTagProperty.setKey(key);
111            }
112    
113            public java.lang.String getValue() {
114                    return _assetTagProperty.getValue();
115            }
116    
117            public void setValue(java.lang.String value) {
118                    _assetTagProperty.setValue(value);
119            }
120    
121            public com.liferay.portlet.asset.model.AssetTagProperty toEscapedModel() {
122                    return _assetTagProperty.toEscapedModel();
123            }
124    
125            public boolean isNew() {
126                    return _assetTagProperty.isNew();
127            }
128    
129            public void setNew(boolean n) {
130                    _assetTagProperty.setNew(n);
131            }
132    
133            public boolean isCachedModel() {
134                    return _assetTagProperty.isCachedModel();
135            }
136    
137            public void setCachedModel(boolean cachedModel) {
138                    _assetTagProperty.setCachedModel(cachedModel);
139            }
140    
141            public boolean isEscapedModel() {
142                    return _assetTagProperty.isEscapedModel();
143            }
144    
145            public void setEscapedModel(boolean escapedModel) {
146                    _assetTagProperty.setEscapedModel(escapedModel);
147            }
148    
149            public java.io.Serializable getPrimaryKeyObj() {
150                    return _assetTagProperty.getPrimaryKeyObj();
151            }
152    
153            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
154                    return _assetTagProperty.getExpandoBridge();
155            }
156    
157            public void setExpandoBridgeAttributes(
158                    com.liferay.portal.service.ServiceContext serviceContext) {
159                    _assetTagProperty.setExpandoBridgeAttributes(serviceContext);
160            }
161    
162            public java.lang.Object clone() {
163                    return _assetTagProperty.clone();
164            }
165    
166            public int compareTo(
167                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty) {
168                    return _assetTagProperty.compareTo(assetTagProperty);
169            }
170    
171            public int hashCode() {
172                    return _assetTagProperty.hashCode();
173            }
174    
175            public java.lang.String toString() {
176                    return _assetTagProperty.toString();
177            }
178    
179            public java.lang.String toXmlString() {
180                    return _assetTagProperty.toXmlString();
181            }
182    
183            public AssetTagProperty getWrappedAssetTagProperty() {
184                    return _assetTagProperty;
185            }
186    
187            private AssetTagProperty _assetTagProperty;
188    }