001
014
015 package com.liferay.portal.model;
016
017
026 public class WebsiteWrapper implements Website {
027 public WebsiteWrapper(Website website) {
028 _website = website;
029 }
030
031
036 public long getPrimaryKey() {
037 return _website.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _website.setPrimaryKey(pk);
047 }
048
049
054 public long getWebsiteId() {
055 return _website.getWebsiteId();
056 }
057
058
063 public void setWebsiteId(long websiteId) {
064 _website.setWebsiteId(websiteId);
065 }
066
067
072 public long getCompanyId() {
073 return _website.getCompanyId();
074 }
075
076
081 public void setCompanyId(long companyId) {
082 _website.setCompanyId(companyId);
083 }
084
085
090 public long getUserId() {
091 return _website.getUserId();
092 }
093
094
099 public void setUserId(long userId) {
100 _website.setUserId(userId);
101 }
102
103
109 public java.lang.String getUserUuid()
110 throws com.liferay.portal.kernel.exception.SystemException {
111 return _website.getUserUuid();
112 }
113
114
119 public void setUserUuid(java.lang.String userUuid) {
120 _website.setUserUuid(userUuid);
121 }
122
123
128 public java.lang.String getUserName() {
129 return _website.getUserName();
130 }
131
132
137 public void setUserName(java.lang.String userName) {
138 _website.setUserName(userName);
139 }
140
141
146 public java.util.Date getCreateDate() {
147 return _website.getCreateDate();
148 }
149
150
155 public void setCreateDate(java.util.Date createDate) {
156 _website.setCreateDate(createDate);
157 }
158
159
164 public java.util.Date getModifiedDate() {
165 return _website.getModifiedDate();
166 }
167
168
173 public void setModifiedDate(java.util.Date modifiedDate) {
174 _website.setModifiedDate(modifiedDate);
175 }
176
177
182 public java.lang.String getClassName() {
183 return _website.getClassName();
184 }
185
186
191 public long getClassNameId() {
192 return _website.getClassNameId();
193 }
194
195
200 public void setClassNameId(long classNameId) {
201 _website.setClassNameId(classNameId);
202 }
203
204
209 public long getClassPK() {
210 return _website.getClassPK();
211 }
212
213
218 public void setClassPK(long classPK) {
219 _website.setClassPK(classPK);
220 }
221
222
227 public java.lang.String getUrl() {
228 return _website.getUrl();
229 }
230
231
236 public void setUrl(java.lang.String url) {
237 _website.setUrl(url);
238 }
239
240
245 public int getTypeId() {
246 return _website.getTypeId();
247 }
248
249
254 public void setTypeId(int typeId) {
255 _website.setTypeId(typeId);
256 }
257
258
263 public boolean getPrimary() {
264 return _website.getPrimary();
265 }
266
267
272 public boolean isPrimary() {
273 return _website.isPrimary();
274 }
275
276
281 public void setPrimary(boolean primary) {
282 _website.setPrimary(primary);
283 }
284
285 public boolean isNew() {
286 return _website.isNew();
287 }
288
289 public void setNew(boolean n) {
290 _website.setNew(n);
291 }
292
293 public boolean isCachedModel() {
294 return _website.isCachedModel();
295 }
296
297 public void setCachedModel(boolean cachedModel) {
298 _website.setCachedModel(cachedModel);
299 }
300
301 public boolean isEscapedModel() {
302 return _website.isEscapedModel();
303 }
304
305 public void setEscapedModel(boolean escapedModel) {
306 _website.setEscapedModel(escapedModel);
307 }
308
309 public java.io.Serializable getPrimaryKeyObj() {
310 return _website.getPrimaryKeyObj();
311 }
312
313 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
314 return _website.getExpandoBridge();
315 }
316
317 public void setExpandoBridgeAttributes(
318 com.liferay.portal.service.ServiceContext serviceContext) {
319 _website.setExpandoBridgeAttributes(serviceContext);
320 }
321
322 public java.lang.Object clone() {
323 return _website.clone();
324 }
325
326 public int compareTo(com.liferay.portal.model.Website website) {
327 return _website.compareTo(website);
328 }
329
330 public int hashCode() {
331 return _website.hashCode();
332 }
333
334 public com.liferay.portal.model.Website toEscapedModel() {
335 return _website.toEscapedModel();
336 }
337
338 public java.lang.String toString() {
339 return _website.toString();
340 }
341
342 public java.lang.String toXmlString() {
343 return _website.toXmlString();
344 }
345
346 public com.liferay.portal.model.ListType getType()
347 throws com.liferay.portal.kernel.exception.PortalException,
348 com.liferay.portal.kernel.exception.SystemException {
349 return _website.getType();
350 }
351
352 public Website getWrappedWebsite() {
353 return _website;
354 }
355
356 private Website _website;
357 }