1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.model;
24  
25  
26  /**
27   * <a href="AccountSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link Account}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       Account
40   * @generated
41   */
42  public class AccountWrapper implements Account {
43      public AccountWrapper(Account account) {
44          _account = account;
45      }
46  
47      public long getPrimaryKey() {
48          return _account.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _account.setPrimaryKey(pk);
53      }
54  
55      public long getAccountId() {
56          return _account.getAccountId();
57      }
58  
59      public void setAccountId(long accountId) {
60          _account.setAccountId(accountId);
61      }
62  
63      public long getCompanyId() {
64          return _account.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _account.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _account.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _account.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.SystemException {
81          return _account.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _account.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _account.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _account.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _account.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _account.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _account.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _account.setModifiedDate(modifiedDate);
110     }
111 
112     public long getParentAccountId() {
113         return _account.getParentAccountId();
114     }
115 
116     public void setParentAccountId(long parentAccountId) {
117         _account.setParentAccountId(parentAccountId);
118     }
119 
120     public java.lang.String getName() {
121         return _account.getName();
122     }
123 
124     public void setName(java.lang.String name) {
125         _account.setName(name);
126     }
127 
128     public java.lang.String getLegalName() {
129         return _account.getLegalName();
130     }
131 
132     public void setLegalName(java.lang.String legalName) {
133         _account.setLegalName(legalName);
134     }
135 
136     public java.lang.String getLegalId() {
137         return _account.getLegalId();
138     }
139 
140     public void setLegalId(java.lang.String legalId) {
141         _account.setLegalId(legalId);
142     }
143 
144     public java.lang.String getLegalType() {
145         return _account.getLegalType();
146     }
147 
148     public void setLegalType(java.lang.String legalType) {
149         _account.setLegalType(legalType);
150     }
151 
152     public java.lang.String getSicCode() {
153         return _account.getSicCode();
154     }
155 
156     public void setSicCode(java.lang.String sicCode) {
157         _account.setSicCode(sicCode);
158     }
159 
160     public java.lang.String getTickerSymbol() {
161         return _account.getTickerSymbol();
162     }
163 
164     public void setTickerSymbol(java.lang.String tickerSymbol) {
165         _account.setTickerSymbol(tickerSymbol);
166     }
167 
168     public java.lang.String getIndustry() {
169         return _account.getIndustry();
170     }
171 
172     public void setIndustry(java.lang.String industry) {
173         _account.setIndustry(industry);
174     }
175 
176     public java.lang.String getType() {
177         return _account.getType();
178     }
179 
180     public void setType(java.lang.String type) {
181         _account.setType(type);
182     }
183 
184     public java.lang.String getSize() {
185         return _account.getSize();
186     }
187 
188     public void setSize(java.lang.String size) {
189         _account.setSize(size);
190     }
191 
192     public com.liferay.portal.model.Account toEscapedModel() {
193         return _account.toEscapedModel();
194     }
195 
196     public boolean isNew() {
197         return _account.isNew();
198     }
199 
200     public boolean setNew(boolean n) {
201         return _account.setNew(n);
202     }
203 
204     public boolean isCachedModel() {
205         return _account.isCachedModel();
206     }
207 
208     public void setCachedModel(boolean cachedModel) {
209         _account.setCachedModel(cachedModel);
210     }
211 
212     public boolean isEscapedModel() {
213         return _account.isEscapedModel();
214     }
215 
216     public void setEscapedModel(boolean escapedModel) {
217         _account.setEscapedModel(escapedModel);
218     }
219 
220     public java.io.Serializable getPrimaryKeyObj() {
221         return _account.getPrimaryKeyObj();
222     }
223 
224     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
225         return _account.getExpandoBridge();
226     }
227 
228     public void setExpandoBridgeAttributes(
229         com.liferay.portal.service.ServiceContext serviceContext) {
230         _account.setExpandoBridgeAttributes(serviceContext);
231     }
232 
233     public java.lang.Object clone() {
234         return _account.clone();
235     }
236 
237     public int compareTo(com.liferay.portal.model.Account account) {
238         return _account.compareTo(account);
239     }
240 
241     public int hashCode() {
242         return _account.hashCode();
243     }
244 
245     public java.lang.String toString() {
246         return _account.toString();
247     }
248 
249     public java.lang.String toXmlString() {
250         return _account.toXmlString();
251     }
252 
253     public Account getWrappedAccount() {
254         return _account;
255     }
256 
257     private Account _account;
258 }