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