1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.model;
16  
17  /**
18   * <a href="WebsiteSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link Website}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       Website
31   * @generated
32   */
33  public class WebsiteWrapper implements Website {
34      public WebsiteWrapper(Website website) {
35          _website = website;
36      }
37  
38      public long getPrimaryKey() {
39          return _website.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _website.setPrimaryKey(pk);
44      }
45  
46      public long getWebsiteId() {
47          return _website.getWebsiteId();
48      }
49  
50      public void setWebsiteId(long websiteId) {
51          _website.setWebsiteId(websiteId);
52      }
53  
54      public long getCompanyId() {
55          return _website.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _website.setCompanyId(companyId);
60      }
61  
62      public long getUserId() {
63          return _website.getUserId();
64      }
65  
66      public void setUserId(long userId) {
67          _website.setUserId(userId);
68      }
69  
70      public java.lang.String getUserUuid()
71          throws com.liferay.portal.SystemException {
72          return _website.getUserUuid();
73      }
74  
75      public void setUserUuid(java.lang.String userUuid) {
76          _website.setUserUuid(userUuid);
77      }
78  
79      public java.lang.String getUserName() {
80          return _website.getUserName();
81      }
82  
83      public void setUserName(java.lang.String userName) {
84          _website.setUserName(userName);
85      }
86  
87      public java.util.Date getCreateDate() {
88          return _website.getCreateDate();
89      }
90  
91      public void setCreateDate(java.util.Date createDate) {
92          _website.setCreateDate(createDate);
93      }
94  
95      public java.util.Date getModifiedDate() {
96          return _website.getModifiedDate();
97      }
98  
99      public void setModifiedDate(java.util.Date modifiedDate) {
100         _website.setModifiedDate(modifiedDate);
101     }
102 
103     public java.lang.String getClassName() {
104         return _website.getClassName();
105     }
106 
107     public long getClassNameId() {
108         return _website.getClassNameId();
109     }
110 
111     public void setClassNameId(long classNameId) {
112         _website.setClassNameId(classNameId);
113     }
114 
115     public long getClassPK() {
116         return _website.getClassPK();
117     }
118 
119     public void setClassPK(long classPK) {
120         _website.setClassPK(classPK);
121     }
122 
123     public java.lang.String getUrl() {
124         return _website.getUrl();
125     }
126 
127     public void setUrl(java.lang.String url) {
128         _website.setUrl(url);
129     }
130 
131     public int getTypeId() {
132         return _website.getTypeId();
133     }
134 
135     public void setTypeId(int typeId) {
136         _website.setTypeId(typeId);
137     }
138 
139     public boolean getPrimary() {
140         return _website.getPrimary();
141     }
142 
143     public boolean isPrimary() {
144         return _website.isPrimary();
145     }
146 
147     public void setPrimary(boolean primary) {
148         _website.setPrimary(primary);
149     }
150 
151     public boolean isNew() {
152         return _website.isNew();
153     }
154 
155     public boolean setNew(boolean n) {
156         return _website.setNew(n);
157     }
158 
159     public boolean isCachedModel() {
160         return _website.isCachedModel();
161     }
162 
163     public void setCachedModel(boolean cachedModel) {
164         _website.setCachedModel(cachedModel);
165     }
166 
167     public boolean isEscapedModel() {
168         return _website.isEscapedModel();
169     }
170 
171     public void setEscapedModel(boolean escapedModel) {
172         _website.setEscapedModel(escapedModel);
173     }
174 
175     public java.io.Serializable getPrimaryKeyObj() {
176         return _website.getPrimaryKeyObj();
177     }
178 
179     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
180         return _website.getExpandoBridge();
181     }
182 
183     public void setExpandoBridgeAttributes(
184         com.liferay.portal.service.ServiceContext serviceContext) {
185         _website.setExpandoBridgeAttributes(serviceContext);
186     }
187 
188     public java.lang.Object clone() {
189         return _website.clone();
190     }
191 
192     public int compareTo(com.liferay.portal.model.Website website) {
193         return _website.compareTo(website);
194     }
195 
196     public int hashCode() {
197         return _website.hashCode();
198     }
199 
200     public com.liferay.portal.model.Website toEscapedModel() {
201         return _website.toEscapedModel();
202     }
203 
204     public java.lang.String toString() {
205         return _website.toString();
206     }
207 
208     public java.lang.String toXmlString() {
209         return _website.toXmlString();
210     }
211 
212     public com.liferay.portal.model.ListType getType() {
213         return _website.getType();
214     }
215 
216     public Website getWrappedWebsite() {
217         return _website;
218     }
219 
220     private Website _website;
221 }