1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="CompanySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link Company}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       Company
32   * @generated
33   */
34  public class CompanyWrapper implements Company {
35      public CompanyWrapper(Company company) {
36          _company = company;
37      }
38  
39      public long getPrimaryKey() {
40          return _company.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _company.setPrimaryKey(pk);
45      }
46  
47      public long getCompanyId() {
48          return _company.getCompanyId();
49      }
50  
51      public void setCompanyId(long companyId) {
52          _company.setCompanyId(companyId);
53      }
54  
55      public long getAccountId() {
56          return _company.getAccountId();
57      }
58  
59      public void setAccountId(long accountId) {
60          _company.setAccountId(accountId);
61      }
62  
63      public java.lang.String getWebId() {
64          return _company.getWebId();
65      }
66  
67      public void setWebId(java.lang.String webId) {
68          _company.setWebId(webId);
69      }
70  
71      public java.lang.String getKey() {
72          return _company.getKey();
73      }
74  
75      public void setKey(java.lang.String key) {
76          _company.setKey(key);
77      }
78  
79      public java.lang.String getVirtualHost() {
80          return _company.getVirtualHost();
81      }
82  
83      public void setVirtualHost(java.lang.String virtualHost) {
84          _company.setVirtualHost(virtualHost);
85      }
86  
87      public java.lang.String getMx() {
88          return _company.getMx();
89      }
90  
91      public void setMx(java.lang.String mx) {
92          _company.setMx(mx);
93      }
94  
95      public java.lang.String getHomeURL() {
96          return _company.getHomeURL();
97      }
98  
99      public void setHomeURL(java.lang.String homeURL) {
100         _company.setHomeURL(homeURL);
101     }
102 
103     public long getLogoId() {
104         return _company.getLogoId();
105     }
106 
107     public void setLogoId(long logoId) {
108         _company.setLogoId(logoId);
109     }
110 
111     public boolean getSystem() {
112         return _company.getSystem();
113     }
114 
115     public boolean isSystem() {
116         return _company.isSystem();
117     }
118 
119     public void setSystem(boolean system) {
120         _company.setSystem(system);
121     }
122 
123     public com.liferay.portal.model.Company toEscapedModel() {
124         return _company.toEscapedModel();
125     }
126 
127     public boolean isNew() {
128         return _company.isNew();
129     }
130 
131     public boolean setNew(boolean n) {
132         return _company.setNew(n);
133     }
134 
135     public boolean isCachedModel() {
136         return _company.isCachedModel();
137     }
138 
139     public void setCachedModel(boolean cachedModel) {
140         _company.setCachedModel(cachedModel);
141     }
142 
143     public boolean isEscapedModel() {
144         return _company.isEscapedModel();
145     }
146 
147     public void setEscapedModel(boolean escapedModel) {
148         _company.setEscapedModel(escapedModel);
149     }
150 
151     public java.io.Serializable getPrimaryKeyObj() {
152         return _company.getPrimaryKeyObj();
153     }
154 
155     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
156         return _company.getExpandoBridge();
157     }
158 
159     public void setExpandoBridgeAttributes(
160         com.liferay.portal.service.ServiceContext serviceContext) {
161         _company.setExpandoBridgeAttributes(serviceContext);
162     }
163 
164     public java.lang.Object clone() {
165         return _company.clone();
166     }
167 
168     public int compareTo(com.liferay.portal.model.Company company) {
169         return _company.compareTo(company);
170     }
171 
172     public int hashCode() {
173         return _company.hashCode();
174     }
175 
176     public java.lang.String toString() {
177         return _company.toString();
178     }
179 
180     public java.lang.String toXmlString() {
181         return _company.toXmlString();
182     }
183 
184     public com.liferay.portal.model.Account getAccount()
185         throws com.liferay.portal.kernel.exception.PortalException,
186             com.liferay.portal.kernel.exception.SystemException {
187         return _company.getAccount();
188     }
189 
190     public java.lang.String getAdminName() {
191         return _company.getAdminName();
192     }
193 
194     public java.lang.String getAuthType()
195         throws com.liferay.portal.kernel.exception.SystemException {
196         return _company.getAuthType();
197     }
198 
199     public com.liferay.portal.model.User getDefaultUser()
200         throws com.liferay.portal.kernel.exception.PortalException,
201             com.liferay.portal.kernel.exception.SystemException {
202         return _company.getDefaultUser();
203     }
204 
205     public java.lang.String getDefaultWebId() {
206         return _company.getDefaultWebId();
207     }
208 
209     public java.lang.String getEmailAddress() {
210         return _company.getEmailAddress();
211     }
212 
213     public com.liferay.portal.model.Group getGroup()
214         throws com.liferay.portal.kernel.exception.PortalException,
215             com.liferay.portal.kernel.exception.SystemException {
216         return _company.getGroup();
217     }
218 
219     public java.security.Key getKeyObj() {
220         return _company.getKeyObj();
221     }
222 
223     public java.util.Locale getLocale()
224         throws com.liferay.portal.kernel.exception.PortalException,
225             com.liferay.portal.kernel.exception.SystemException {
226         return _company.getLocale();
227     }
228 
229     public java.lang.String getName()
230         throws com.liferay.portal.kernel.exception.PortalException,
231             com.liferay.portal.kernel.exception.SystemException {
232         return _company.getName();
233     }
234 
235     public java.lang.String getShardName()
236         throws com.liferay.portal.kernel.exception.PortalException,
237             com.liferay.portal.kernel.exception.SystemException {
238         return _company.getShardName();
239     }
240 
241     public java.lang.String getShortName()
242         throws com.liferay.portal.kernel.exception.PortalException,
243             com.liferay.portal.kernel.exception.SystemException {
244         return _company.getShortName();
245     }
246 
247     public java.util.TimeZone getTimeZone()
248         throws com.liferay.portal.kernel.exception.PortalException,
249             com.liferay.portal.kernel.exception.SystemException {
250         return _company.getTimeZone();
251     }
252 
253     public boolean hasCompanyMx(java.lang.String emailAddress)
254         throws com.liferay.portal.kernel.exception.SystemException {
255         return _company.hasCompanyMx(emailAddress);
256     }
257 
258     public boolean isAutoLogin()
259         throws com.liferay.portal.kernel.exception.SystemException {
260         return _company.isAutoLogin();
261     }
262 
263     public boolean isCommunityLogo()
264         throws com.liferay.portal.kernel.exception.SystemException {
265         return _company.isCommunityLogo();
266     }
267 
268     public boolean isSendPassword()
269         throws com.liferay.portal.kernel.exception.SystemException {
270         return _company.isSendPassword();
271     }
272 
273     public boolean isStrangers()
274         throws com.liferay.portal.kernel.exception.SystemException {
275         return _company.isStrangers();
276     }
277 
278     public boolean isStrangersVerify()
279         throws com.liferay.portal.kernel.exception.SystemException {
280         return _company.isStrangersVerify();
281     }
282 
283     public boolean isStrangersWithMx()
284         throws com.liferay.portal.kernel.exception.SystemException {
285         return _company.isStrangersWithMx();
286     }
287 
288     public void setKeyObj(java.security.Key keyObj) {
289         _company.setKeyObj(keyObj);
290     }
291 
292     public Company getWrappedCompany() {
293         return _company;
294     }
295 
296     private Company _company;
297 }