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="AccountSoap.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 Account}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       Account
32   * @generated
33   */
34  public class AccountWrapper implements Account {
35      public AccountWrapper(Account account) {
36          _account = account;
37      }
38  
39      public long getPrimaryKey() {
40          return _account.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _account.setPrimaryKey(pk);
45      }
46  
47      public long getAccountId() {
48          return _account.getAccountId();
49      }
50  
51      public void setAccountId(long accountId) {
52          _account.setAccountId(accountId);
53      }
54  
55      public long getCompanyId() {
56          return _account.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _account.setCompanyId(companyId);
61      }
62  
63      public long getUserId() {
64          return _account.getUserId();
65      }
66  
67      public void setUserId(long userId) {
68          _account.setUserId(userId);
69      }
70  
71      public java.lang.String getUserUuid()
72          throws com.liferay.portal.kernel.exception.SystemException {
73          return _account.getUserUuid();
74      }
75  
76      public void setUserUuid(java.lang.String userUuid) {
77          _account.setUserUuid(userUuid);
78      }
79  
80      public java.lang.String getUserName() {
81          return _account.getUserName();
82      }
83  
84      public void setUserName(java.lang.String userName) {
85          _account.setUserName(userName);
86      }
87  
88      public java.util.Date getCreateDate() {
89          return _account.getCreateDate();
90      }
91  
92      public void setCreateDate(java.util.Date createDate) {
93          _account.setCreateDate(createDate);
94      }
95  
96      public java.util.Date getModifiedDate() {
97          return _account.getModifiedDate();
98      }
99  
100     public void setModifiedDate(java.util.Date modifiedDate) {
101         _account.setModifiedDate(modifiedDate);
102     }
103 
104     public long getParentAccountId() {
105         return _account.getParentAccountId();
106     }
107 
108     public void setParentAccountId(long parentAccountId) {
109         _account.setParentAccountId(parentAccountId);
110     }
111 
112     public java.lang.String getName() {
113         return _account.getName();
114     }
115 
116     public void setName(java.lang.String name) {
117         _account.setName(name);
118     }
119 
120     public java.lang.String getLegalName() {
121         return _account.getLegalName();
122     }
123 
124     public void setLegalName(java.lang.String legalName) {
125         _account.setLegalName(legalName);
126     }
127 
128     public java.lang.String getLegalId() {
129         return _account.getLegalId();
130     }
131 
132     public void setLegalId(java.lang.String legalId) {
133         _account.setLegalId(legalId);
134     }
135 
136     public java.lang.String getLegalType() {
137         return _account.getLegalType();
138     }
139 
140     public void setLegalType(java.lang.String legalType) {
141         _account.setLegalType(legalType);
142     }
143 
144     public java.lang.String getSicCode() {
145         return _account.getSicCode();
146     }
147 
148     public void setSicCode(java.lang.String sicCode) {
149         _account.setSicCode(sicCode);
150     }
151 
152     public java.lang.String getTickerSymbol() {
153         return _account.getTickerSymbol();
154     }
155 
156     public void setTickerSymbol(java.lang.String tickerSymbol) {
157         _account.setTickerSymbol(tickerSymbol);
158     }
159 
160     public java.lang.String getIndustry() {
161         return _account.getIndustry();
162     }
163 
164     public void setIndustry(java.lang.String industry) {
165         _account.setIndustry(industry);
166     }
167 
168     public java.lang.String getType() {
169         return _account.getType();
170     }
171 
172     public void setType(java.lang.String type) {
173         _account.setType(type);
174     }
175 
176     public java.lang.String getSize() {
177         return _account.getSize();
178     }
179 
180     public void setSize(java.lang.String size) {
181         _account.setSize(size);
182     }
183 
184     public com.liferay.portal.model.Account toEscapedModel() {
185         return _account.toEscapedModel();
186     }
187 
188     public boolean isNew() {
189         return _account.isNew();
190     }
191 
192     public boolean setNew(boolean n) {
193         return _account.setNew(n);
194     }
195 
196     public boolean isCachedModel() {
197         return _account.isCachedModel();
198     }
199 
200     public void setCachedModel(boolean cachedModel) {
201         _account.setCachedModel(cachedModel);
202     }
203 
204     public boolean isEscapedModel() {
205         return _account.isEscapedModel();
206     }
207 
208     public void setEscapedModel(boolean escapedModel) {
209         _account.setEscapedModel(escapedModel);
210     }
211 
212     public java.io.Serializable getPrimaryKeyObj() {
213         return _account.getPrimaryKeyObj();
214     }
215 
216     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
217         return _account.getExpandoBridge();
218     }
219 
220     public void setExpandoBridgeAttributes(
221         com.liferay.portal.service.ServiceContext serviceContext) {
222         _account.setExpandoBridgeAttributes(serviceContext);
223     }
224 
225     public java.lang.Object clone() {
226         return _account.clone();
227     }
228 
229     public int compareTo(com.liferay.portal.model.Account account) {
230         return _account.compareTo(account);
231     }
232 
233     public int hashCode() {
234         return _account.hashCode();
235     }
236 
237     public java.lang.String toString() {
238         return _account.toString();
239     }
240 
241     public java.lang.String toXmlString() {
242         return _account.toXmlString();
243     }
244 
245     public Account getWrappedAccount() {
246         return _account;
247     }
248 
249     private Account _account;
250 }