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