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