001
014
015 package com.liferay.portal.model;
016
017
026 public class WebsiteWrapper implements Website, ModelWrapper<Website> {
027 public WebsiteWrapper(Website website) {
028 _website = website;
029 }
030
031 public Class<?> getModelClass() {
032 return Website.class;
033 }
034
035 public String getModelClassName() {
036 return Website.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _website.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _website.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getWebsiteId() {
063 return _website.getWebsiteId();
064 }
065
066
071 public void setWebsiteId(long websiteId) {
072 _website.setWebsiteId(websiteId);
073 }
074
075
080 public long getCompanyId() {
081 return _website.getCompanyId();
082 }
083
084
089 public void setCompanyId(long companyId) {
090 _website.setCompanyId(companyId);
091 }
092
093
098 public long getUserId() {
099 return _website.getUserId();
100 }
101
102
107 public void setUserId(long userId) {
108 _website.setUserId(userId);
109 }
110
111
117 public java.lang.String getUserUuid()
118 throws com.liferay.portal.kernel.exception.SystemException {
119 return _website.getUserUuid();
120 }
121
122
127 public void setUserUuid(java.lang.String userUuid) {
128 _website.setUserUuid(userUuid);
129 }
130
131
136 public java.lang.String getUserName() {
137 return _website.getUserName();
138 }
139
140
145 public void setUserName(java.lang.String userName) {
146 _website.setUserName(userName);
147 }
148
149
154 public java.util.Date getCreateDate() {
155 return _website.getCreateDate();
156 }
157
158
163 public void setCreateDate(java.util.Date createDate) {
164 _website.setCreateDate(createDate);
165 }
166
167
172 public java.util.Date getModifiedDate() {
173 return _website.getModifiedDate();
174 }
175
176
181 public void setModifiedDate(java.util.Date modifiedDate) {
182 _website.setModifiedDate(modifiedDate);
183 }
184
185
190 public java.lang.String getClassName() {
191 return _website.getClassName();
192 }
193
194
199 public long getClassNameId() {
200 return _website.getClassNameId();
201 }
202
203
208 public void setClassNameId(long classNameId) {
209 _website.setClassNameId(classNameId);
210 }
211
212
217 public long getClassPK() {
218 return _website.getClassPK();
219 }
220
221
226 public void setClassPK(long classPK) {
227 _website.setClassPK(classPK);
228 }
229
230
235 public java.lang.String getUrl() {
236 return _website.getUrl();
237 }
238
239
244 public void setUrl(java.lang.String url) {
245 _website.setUrl(url);
246 }
247
248
253 public int getTypeId() {
254 return _website.getTypeId();
255 }
256
257
262 public void setTypeId(int typeId) {
263 _website.setTypeId(typeId);
264 }
265
266
271 public boolean getPrimary() {
272 return _website.getPrimary();
273 }
274
275
280 public boolean isPrimary() {
281 return _website.isPrimary();
282 }
283
284
289 public void setPrimary(boolean primary) {
290 _website.setPrimary(primary);
291 }
292
293 public boolean isNew() {
294 return _website.isNew();
295 }
296
297 public void setNew(boolean n) {
298 _website.setNew(n);
299 }
300
301 public boolean isCachedModel() {
302 return _website.isCachedModel();
303 }
304
305 public void setCachedModel(boolean cachedModel) {
306 _website.setCachedModel(cachedModel);
307 }
308
309 public boolean isEscapedModel() {
310 return _website.isEscapedModel();
311 }
312
313 public java.io.Serializable getPrimaryKeyObj() {
314 return _website.getPrimaryKeyObj();
315 }
316
317 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
318 _website.setPrimaryKeyObj(primaryKeyObj);
319 }
320
321 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
322 return _website.getExpandoBridge();
323 }
324
325 public void setExpandoBridgeAttributes(
326 com.liferay.portal.service.ServiceContext serviceContext) {
327 _website.setExpandoBridgeAttributes(serviceContext);
328 }
329
330 @Override
331 public java.lang.Object clone() {
332 return new WebsiteWrapper((Website)_website.clone());
333 }
334
335 public int compareTo(com.liferay.portal.model.Website website) {
336 return _website.compareTo(website);
337 }
338
339 @Override
340 public int hashCode() {
341 return _website.hashCode();
342 }
343
344 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.Website> toCacheModel() {
345 return _website.toCacheModel();
346 }
347
348 public com.liferay.portal.model.Website toEscapedModel() {
349 return new WebsiteWrapper(_website.toEscapedModel());
350 }
351
352 @Override
353 public java.lang.String toString() {
354 return _website.toString();
355 }
356
357 public java.lang.String toXmlString() {
358 return _website.toXmlString();
359 }
360
361 public void persist()
362 throws com.liferay.portal.kernel.exception.SystemException {
363 _website.persist();
364 }
365
366 public com.liferay.portal.model.ListType getType()
367 throws com.liferay.portal.kernel.exception.PortalException,
368 com.liferay.portal.kernel.exception.SystemException {
369 return _website.getType();
370 }
371
372
375 public Website getWrappedWebsite() {
376 return _website;
377 }
378
379 public Website getWrappedModel() {
380 return _website;
381 }
382
383 public void resetOriginalValues() {
384 _website.resetOriginalValues();
385 }
386
387 private Website _website;
388 }