001
014
015 package com.liferay.portlet.asset.model;
016
017
026 public class AssetTagPropertyWrapper implements AssetTagProperty {
027 public AssetTagPropertyWrapper(AssetTagProperty assetTagProperty) {
028 _assetTagProperty = assetTagProperty;
029 }
030
031 public Class<?> getModelClass() {
032 return AssetTagProperty.class;
033 }
034
035 public String getModelClassName() {
036 return AssetTagProperty.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _assetTagProperty.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _assetTagProperty.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getTagPropertyId() {
063 return _assetTagProperty.getTagPropertyId();
064 }
065
066
071 public void setTagPropertyId(long tagPropertyId) {
072 _assetTagProperty.setTagPropertyId(tagPropertyId);
073 }
074
075
080 public long getCompanyId() {
081 return _assetTagProperty.getCompanyId();
082 }
083
084
089 public void setCompanyId(long companyId) {
090 _assetTagProperty.setCompanyId(companyId);
091 }
092
093
098 public long getUserId() {
099 return _assetTagProperty.getUserId();
100 }
101
102
107 public void setUserId(long userId) {
108 _assetTagProperty.setUserId(userId);
109 }
110
111
117 public java.lang.String getUserUuid()
118 throws com.liferay.portal.kernel.exception.SystemException {
119 return _assetTagProperty.getUserUuid();
120 }
121
122
127 public void setUserUuid(java.lang.String userUuid) {
128 _assetTagProperty.setUserUuid(userUuid);
129 }
130
131
136 public java.lang.String getUserName() {
137 return _assetTagProperty.getUserName();
138 }
139
140
145 public void setUserName(java.lang.String userName) {
146 _assetTagProperty.setUserName(userName);
147 }
148
149
154 public java.util.Date getCreateDate() {
155 return _assetTagProperty.getCreateDate();
156 }
157
158
163 public void setCreateDate(java.util.Date createDate) {
164 _assetTagProperty.setCreateDate(createDate);
165 }
166
167
172 public java.util.Date getModifiedDate() {
173 return _assetTagProperty.getModifiedDate();
174 }
175
176
181 public void setModifiedDate(java.util.Date modifiedDate) {
182 _assetTagProperty.setModifiedDate(modifiedDate);
183 }
184
185
190 public long getTagId() {
191 return _assetTagProperty.getTagId();
192 }
193
194
199 public void setTagId(long tagId) {
200 _assetTagProperty.setTagId(tagId);
201 }
202
203
208 public java.lang.String getKey() {
209 return _assetTagProperty.getKey();
210 }
211
212
217 public void setKey(java.lang.String key) {
218 _assetTagProperty.setKey(key);
219 }
220
221
226 public java.lang.String getValue() {
227 return _assetTagProperty.getValue();
228 }
229
230
235 public void setValue(java.lang.String value) {
236 _assetTagProperty.setValue(value);
237 }
238
239 public boolean isNew() {
240 return _assetTagProperty.isNew();
241 }
242
243 public void setNew(boolean n) {
244 _assetTagProperty.setNew(n);
245 }
246
247 public boolean isCachedModel() {
248 return _assetTagProperty.isCachedModel();
249 }
250
251 public void setCachedModel(boolean cachedModel) {
252 _assetTagProperty.setCachedModel(cachedModel);
253 }
254
255 public boolean isEscapedModel() {
256 return _assetTagProperty.isEscapedModel();
257 }
258
259 public java.io.Serializable getPrimaryKeyObj() {
260 return _assetTagProperty.getPrimaryKeyObj();
261 }
262
263 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
264 _assetTagProperty.setPrimaryKeyObj(primaryKeyObj);
265 }
266
267 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
268 return _assetTagProperty.getExpandoBridge();
269 }
270
271 public void setExpandoBridgeAttributes(
272 com.liferay.portal.service.ServiceContext serviceContext) {
273 _assetTagProperty.setExpandoBridgeAttributes(serviceContext);
274 }
275
276 @Override
277 public java.lang.Object clone() {
278 return new AssetTagPropertyWrapper((AssetTagProperty)_assetTagProperty.clone());
279 }
280
281 public int compareTo(
282 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty) {
283 return _assetTagProperty.compareTo(assetTagProperty);
284 }
285
286 @Override
287 public int hashCode() {
288 return _assetTagProperty.hashCode();
289 }
290
291 public com.liferay.portal.model.CacheModel<com.liferay.portlet.asset.model.AssetTagProperty> toCacheModel() {
292 return _assetTagProperty.toCacheModel();
293 }
294
295 public com.liferay.portlet.asset.model.AssetTagProperty toEscapedModel() {
296 return new AssetTagPropertyWrapper(_assetTagProperty.toEscapedModel());
297 }
298
299 @Override
300 public java.lang.String toString() {
301 return _assetTagProperty.toString();
302 }
303
304 public java.lang.String toXmlString() {
305 return _assetTagProperty.toXmlString();
306 }
307
308 public void persist()
309 throws com.liferay.portal.kernel.exception.SystemException {
310 _assetTagProperty.persist();
311 }
312
313 public AssetTagProperty getWrappedAssetTagProperty() {
314 return _assetTagProperty;
315 }
316
317 public void resetOriginalValues() {
318 _assetTagProperty.resetOriginalValues();
319 }
320
321 private AssetTagProperty _assetTagProperty;
322 }