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 long getLogoId() {
96          return _company.getLogoId();
97      }
98  
99      public void setLogoId(long logoId) {
100         _company.setLogoId(logoId);
101     }
102 
103     public boolean getSystem() {
104         return _company.getSystem();
105     }
106 
107     public boolean isSystem() {
108         return _company.isSystem();
109     }
110 
111     public void setSystem(boolean system) {
112         _company.setSystem(system);
113     }
114 
115     public com.liferay.portal.model.Company toEscapedModel() {
116         return _company.toEscapedModel();
117     }
118 
119     public boolean isNew() {
120         return _company.isNew();
121     }
122 
123     public boolean setNew(boolean n) {
124         return _company.setNew(n);
125     }
126 
127     public boolean isCachedModel() {
128         return _company.isCachedModel();
129     }
130 
131     public void setCachedModel(boolean cachedModel) {
132         _company.setCachedModel(cachedModel);
133     }
134 
135     public boolean isEscapedModel() {
136         return _company.isEscapedModel();
137     }
138 
139     public void setEscapedModel(boolean escapedModel) {
140         _company.setEscapedModel(escapedModel);
141     }
142 
143     public java.io.Serializable getPrimaryKeyObj() {
144         return _company.getPrimaryKeyObj();
145     }
146 
147     public java.lang.Object clone() {
148         return _company.clone();
149     }
150 
151     public int compareTo(com.liferay.portal.model.Company company) {
152         return _company.compareTo(company);
153     }
154 
155     public int hashCode() {
156         return _company.hashCode();
157     }
158 
159     public java.lang.String toString() {
160         return _company.toString();
161     }
162 
163     public java.lang.String toXmlString() {
164         return _company.toXmlString();
165     }
166 
167     public com.liferay.portal.model.Account getAccount() {
168         return _company.getAccount();
169     }
170 
171     public java.lang.String getAdminName() {
172         return _company.getAdminName();
173     }
174 
175     public java.lang.String getAuthType()
176         throws com.liferay.portal.SystemException {
177         return _company.getAuthType();
178     }
179 
180     public com.liferay.portal.model.User getDefaultUser() {
181         return _company.getDefaultUser();
182     }
183 
184     public java.lang.String getDefaultWebId() {
185         return _company.getDefaultWebId();
186     }
187 
188     public java.lang.String getEmailAddress() {
189         return _company.getEmailAddress();
190     }
191 
192     public java.security.Key getKeyObj() {
193         return _company.getKeyObj();
194     }
195 
196     public java.util.Locale getLocale() {
197         return _company.getLocale();
198     }
199 
200     public java.lang.String getName() {
201         return _company.getName();
202     }
203 
204     public java.lang.String getShardName() {
205         return _company.getShardName();
206     }
207 
208     public java.lang.String getShortName() {
209         return _company.getShortName();
210     }
211 
212     public java.util.TimeZone getTimeZone() {
213         return _company.getTimeZone();
214     }
215 
216     public boolean hasCompanyMx(java.lang.String emailAddress) {
217         return _company.hasCompanyMx(emailAddress);
218     }
219 
220     public boolean isAutoLogin() throws com.liferay.portal.SystemException {
221         return _company.isAutoLogin();
222     }
223 
224     public boolean isCommunityLogo() throws com.liferay.portal.SystemException {
225         return _company.isCommunityLogo();
226     }
227 
228     public boolean isSendPassword() throws com.liferay.portal.SystemException {
229         return _company.isSendPassword();
230     }
231 
232     public boolean isStrangers() throws com.liferay.portal.SystemException {
233         return _company.isStrangers();
234     }
235 
236     public boolean isStrangersVerify()
237         throws com.liferay.portal.SystemException {
238         return _company.isStrangersVerify();
239     }
240 
241     public boolean isStrangersWithMx()
242         throws com.liferay.portal.SystemException {
243         return _company.isStrangersWithMx();
244     }
245 
246     public void setKeyObj(java.security.Key keyObj) {
247         _company.setKeyObj(keyObj);
248     }
249 
250     public Company getWrappedCompany() {
251         return _company;
252     }
253 
254     private Company _company;
255 }