1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.asset.model;
16  
17  
18  /**
19   * <a href="AssetCategoryPropertySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link AssetCategoryProperty}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetCategoryProperty
32   * @generated
33   */
34  public class AssetCategoryPropertyWrapper implements AssetCategoryProperty {
35      public AssetCategoryPropertyWrapper(
36          AssetCategoryProperty assetCategoryProperty) {
37          _assetCategoryProperty = assetCategoryProperty;
38      }
39  
40      public long getPrimaryKey() {
41          return _assetCategoryProperty.getPrimaryKey();
42      }
43  
44      public void setPrimaryKey(long pk) {
45          _assetCategoryProperty.setPrimaryKey(pk);
46      }
47  
48      public long getCategoryPropertyId() {
49          return _assetCategoryProperty.getCategoryPropertyId();
50      }
51  
52      public void setCategoryPropertyId(long categoryPropertyId) {
53          _assetCategoryProperty.setCategoryPropertyId(categoryPropertyId);
54      }
55  
56      public long getCompanyId() {
57          return _assetCategoryProperty.getCompanyId();
58      }
59  
60      public void setCompanyId(long companyId) {
61          _assetCategoryProperty.setCompanyId(companyId);
62      }
63  
64      public long getUserId() {
65          return _assetCategoryProperty.getUserId();
66      }
67  
68      public void setUserId(long userId) {
69          _assetCategoryProperty.setUserId(userId);
70      }
71  
72      public java.lang.String getUserUuid()
73          throws com.liferay.portal.kernel.exception.SystemException {
74          return _assetCategoryProperty.getUserUuid();
75      }
76  
77      public void setUserUuid(java.lang.String userUuid) {
78          _assetCategoryProperty.setUserUuid(userUuid);
79      }
80  
81      public java.lang.String getUserName() {
82          return _assetCategoryProperty.getUserName();
83      }
84  
85      public void setUserName(java.lang.String userName) {
86          _assetCategoryProperty.setUserName(userName);
87      }
88  
89      public java.util.Date getCreateDate() {
90          return _assetCategoryProperty.getCreateDate();
91      }
92  
93      public void setCreateDate(java.util.Date createDate) {
94          _assetCategoryProperty.setCreateDate(createDate);
95      }
96  
97      public java.util.Date getModifiedDate() {
98          return _assetCategoryProperty.getModifiedDate();
99      }
100 
101     public void setModifiedDate(java.util.Date modifiedDate) {
102         _assetCategoryProperty.setModifiedDate(modifiedDate);
103     }
104 
105     public long getCategoryId() {
106         return _assetCategoryProperty.getCategoryId();
107     }
108 
109     public void setCategoryId(long categoryId) {
110         _assetCategoryProperty.setCategoryId(categoryId);
111     }
112 
113     public java.lang.String getKey() {
114         return _assetCategoryProperty.getKey();
115     }
116 
117     public void setKey(java.lang.String key) {
118         _assetCategoryProperty.setKey(key);
119     }
120 
121     public java.lang.String getValue() {
122         return _assetCategoryProperty.getValue();
123     }
124 
125     public void setValue(java.lang.String value) {
126         _assetCategoryProperty.setValue(value);
127     }
128 
129     public com.liferay.portlet.asset.model.AssetCategoryProperty toEscapedModel() {
130         return _assetCategoryProperty.toEscapedModel();
131     }
132 
133     public boolean isNew() {
134         return _assetCategoryProperty.isNew();
135     }
136 
137     public boolean setNew(boolean n) {
138         return _assetCategoryProperty.setNew(n);
139     }
140 
141     public boolean isCachedModel() {
142         return _assetCategoryProperty.isCachedModel();
143     }
144 
145     public void setCachedModel(boolean cachedModel) {
146         _assetCategoryProperty.setCachedModel(cachedModel);
147     }
148 
149     public boolean isEscapedModel() {
150         return _assetCategoryProperty.isEscapedModel();
151     }
152 
153     public void setEscapedModel(boolean escapedModel) {
154         _assetCategoryProperty.setEscapedModel(escapedModel);
155     }
156 
157     public java.io.Serializable getPrimaryKeyObj() {
158         return _assetCategoryProperty.getPrimaryKeyObj();
159     }
160 
161     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
162         return _assetCategoryProperty.getExpandoBridge();
163     }
164 
165     public void setExpandoBridgeAttributes(
166         com.liferay.portal.service.ServiceContext serviceContext) {
167         _assetCategoryProperty.setExpandoBridgeAttributes(serviceContext);
168     }
169 
170     public java.lang.Object clone() {
171         return _assetCategoryProperty.clone();
172     }
173 
174     public int compareTo(
175         com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty) {
176         return _assetCategoryProperty.compareTo(assetCategoryProperty);
177     }
178 
179     public int hashCode() {
180         return _assetCategoryProperty.hashCode();
181     }
182 
183     public java.lang.String toString() {
184         return _assetCategoryProperty.toString();
185     }
186 
187     public java.lang.String toXmlString() {
188         return _assetCategoryProperty.toXmlString();
189     }
190 
191     public AssetCategoryProperty getWrappedAssetCategoryProperty() {
192         return _assetCategoryProperty;
193     }
194 
195     private AssetCategoryProperty _assetCategoryProperty;
196 }