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