001    /**
002     * Copyright (c) 2000-2011 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     * <p>
019     * This class is a wrapper for {@link Website}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       Website
024     * @generated
025     */
026    public class WebsiteWrapper implements Website {
027            public WebsiteWrapper(Website website) {
028                    _website = website;
029            }
030    
031            public long getPrimaryKey() {
032                    return _website.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _website.setPrimaryKey(pk);
037            }
038    
039            public long getWebsiteId() {
040                    return _website.getWebsiteId();
041            }
042    
043            public void setWebsiteId(long websiteId) {
044                    _website.setWebsiteId(websiteId);
045            }
046    
047            public long getCompanyId() {
048                    return _website.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _website.setCompanyId(companyId);
053            }
054    
055            public long getUserId() {
056                    return _website.getUserId();
057            }
058    
059            public void setUserId(long userId) {
060                    _website.setUserId(userId);
061            }
062    
063            public java.lang.String getUserUuid()
064                    throws com.liferay.portal.kernel.exception.SystemException {
065                    return _website.getUserUuid();
066            }
067    
068            public void setUserUuid(java.lang.String userUuid) {
069                    _website.setUserUuid(userUuid);
070            }
071    
072            public java.lang.String getUserName() {
073                    return _website.getUserName();
074            }
075    
076            public void setUserName(java.lang.String userName) {
077                    _website.setUserName(userName);
078            }
079    
080            public java.util.Date getCreateDate() {
081                    return _website.getCreateDate();
082            }
083    
084            public void setCreateDate(java.util.Date createDate) {
085                    _website.setCreateDate(createDate);
086            }
087    
088            public java.util.Date getModifiedDate() {
089                    return _website.getModifiedDate();
090            }
091    
092            public void setModifiedDate(java.util.Date modifiedDate) {
093                    _website.setModifiedDate(modifiedDate);
094            }
095    
096            public java.lang.String getClassName() {
097                    return _website.getClassName();
098            }
099    
100            public long getClassNameId() {
101                    return _website.getClassNameId();
102            }
103    
104            public void setClassNameId(long classNameId) {
105                    _website.setClassNameId(classNameId);
106            }
107    
108            public long getClassPK() {
109                    return _website.getClassPK();
110            }
111    
112            public void setClassPK(long classPK) {
113                    _website.setClassPK(classPK);
114            }
115    
116            public java.lang.String getUrl() {
117                    return _website.getUrl();
118            }
119    
120            public void setUrl(java.lang.String url) {
121                    _website.setUrl(url);
122            }
123    
124            public int getTypeId() {
125                    return _website.getTypeId();
126            }
127    
128            public void setTypeId(int typeId) {
129                    _website.setTypeId(typeId);
130            }
131    
132            public boolean getPrimary() {
133                    return _website.getPrimary();
134            }
135    
136            public boolean isPrimary() {
137                    return _website.isPrimary();
138            }
139    
140            public void setPrimary(boolean primary) {
141                    _website.setPrimary(primary);
142            }
143    
144            public com.liferay.portal.model.Website toEscapedModel() {
145                    return _website.toEscapedModel();
146            }
147    
148            public boolean isNew() {
149                    return _website.isNew();
150            }
151    
152            public void setNew(boolean n) {
153                    _website.setNew(n);
154            }
155    
156            public boolean isCachedModel() {
157                    return _website.isCachedModel();
158            }
159    
160            public void setCachedModel(boolean cachedModel) {
161                    _website.setCachedModel(cachedModel);
162            }
163    
164            public boolean isEscapedModel() {
165                    return _website.isEscapedModel();
166            }
167    
168            public void setEscapedModel(boolean escapedModel) {
169                    _website.setEscapedModel(escapedModel);
170            }
171    
172            public java.io.Serializable getPrimaryKeyObj() {
173                    return _website.getPrimaryKeyObj();
174            }
175    
176            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
177                    return _website.getExpandoBridge();
178            }
179    
180            public void setExpandoBridgeAttributes(
181                    com.liferay.portal.service.ServiceContext serviceContext) {
182                    _website.setExpandoBridgeAttributes(serviceContext);
183            }
184    
185            public java.lang.Object clone() {
186                    return _website.clone();
187            }
188    
189            public int compareTo(com.liferay.portal.model.Website website) {
190                    return _website.compareTo(website);
191            }
192    
193            public int hashCode() {
194                    return _website.hashCode();
195            }
196    
197            public java.lang.String toString() {
198                    return _website.toString();
199            }
200    
201            public java.lang.String toXmlString() {
202                    return _website.toXmlString();
203            }
204    
205            public com.liferay.portal.model.ListType getType()
206                    throws com.liferay.portal.kernel.exception.PortalException,
207                            com.liferay.portal.kernel.exception.SystemException {
208                    return _website.getType();
209            }
210    
211            public Website getWrappedWebsite() {
212                    return _website;
213            }
214    
215            private Website _website;
216    }