001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link Website}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       Website
025     * @generated
026     */
027    public class WebsiteWrapper implements Website {
028            public WebsiteWrapper(Website website) {
029                    _website = website;
030            }
031    
032            public long getPrimaryKey() {
033                    return _website.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _website.setPrimaryKey(pk);
038            }
039    
040            public long getWebsiteId() {
041                    return _website.getWebsiteId();
042            }
043    
044            public void setWebsiteId(long websiteId) {
045                    _website.setWebsiteId(websiteId);
046            }
047    
048            public long getCompanyId() {
049                    return _website.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _website.setCompanyId(companyId);
054            }
055    
056            public long getUserId() {
057                    return _website.getUserId();
058            }
059    
060            public void setUserId(long userId) {
061                    _website.setUserId(userId);
062            }
063    
064            public java.lang.String getUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _website.getUserUuid();
067            }
068    
069            public void setUserUuid(java.lang.String userUuid) {
070                    _website.setUserUuid(userUuid);
071            }
072    
073            public java.lang.String getUserName() {
074                    return _website.getUserName();
075            }
076    
077            public void setUserName(java.lang.String userName) {
078                    _website.setUserName(userName);
079            }
080    
081            public java.util.Date getCreateDate() {
082                    return _website.getCreateDate();
083            }
084    
085            public void setCreateDate(java.util.Date createDate) {
086                    _website.setCreateDate(createDate);
087            }
088    
089            public java.util.Date getModifiedDate() {
090                    return _website.getModifiedDate();
091            }
092    
093            public void setModifiedDate(java.util.Date modifiedDate) {
094                    _website.setModifiedDate(modifiedDate);
095            }
096    
097            public java.lang.String getClassName() {
098                    return _website.getClassName();
099            }
100    
101            public long getClassNameId() {
102                    return _website.getClassNameId();
103            }
104    
105            public void setClassNameId(long classNameId) {
106                    _website.setClassNameId(classNameId);
107            }
108    
109            public long getClassPK() {
110                    return _website.getClassPK();
111            }
112    
113            public void setClassPK(long classPK) {
114                    _website.setClassPK(classPK);
115            }
116    
117            public java.lang.String getUrl() {
118                    return _website.getUrl();
119            }
120    
121            public void setUrl(java.lang.String url) {
122                    _website.setUrl(url);
123            }
124    
125            public int getTypeId() {
126                    return _website.getTypeId();
127            }
128    
129            public void setTypeId(int typeId) {
130                    _website.setTypeId(typeId);
131            }
132    
133            public boolean getPrimary() {
134                    return _website.getPrimary();
135            }
136    
137            public boolean isPrimary() {
138                    return _website.isPrimary();
139            }
140    
141            public void setPrimary(boolean primary) {
142                    _website.setPrimary(primary);
143            }
144    
145            public com.liferay.portal.model.Website toEscapedModel() {
146                    return _website.toEscapedModel();
147            }
148    
149            public boolean isNew() {
150                    return _website.isNew();
151            }
152    
153            public void setNew(boolean n) {
154                    _website.setNew(n);
155            }
156    
157            public boolean isCachedModel() {
158                    return _website.isCachedModel();
159            }
160    
161            public void setCachedModel(boolean cachedModel) {
162                    _website.setCachedModel(cachedModel);
163            }
164    
165            public boolean isEscapedModel() {
166                    return _website.isEscapedModel();
167            }
168    
169            public void setEscapedModel(boolean escapedModel) {
170                    _website.setEscapedModel(escapedModel);
171            }
172    
173            public java.io.Serializable getPrimaryKeyObj() {
174                    return _website.getPrimaryKeyObj();
175            }
176    
177            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
178                    return _website.getExpandoBridge();
179            }
180    
181            public void setExpandoBridgeAttributes(
182                    com.liferay.portal.service.ServiceContext serviceContext) {
183                    _website.setExpandoBridgeAttributes(serviceContext);
184            }
185    
186            public java.lang.Object clone() {
187                    return _website.clone();
188            }
189    
190            public int compareTo(com.liferay.portal.model.Website website) {
191                    return _website.compareTo(website);
192            }
193    
194            public int hashCode() {
195                    return _website.hashCode();
196            }
197    
198            public java.lang.String toString() {
199                    return _website.toString();
200            }
201    
202            public java.lang.String toXmlString() {
203                    return _website.toXmlString();
204            }
205    
206            public com.liferay.portal.model.ListType getType()
207                    throws com.liferay.portal.kernel.exception.PortalException,
208                            com.liferay.portal.kernel.exception.SystemException {
209                    return _website.getType();
210            }
211    
212            public Website getWrappedWebsite() {
213                    return _website;
214            }
215    
216            private Website _website;
217    }