001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link Account}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       Account
025     * @generated
026     */
027    public class AccountWrapper implements Account {
028            public AccountWrapper(Account account) {
029                    _account = account;
030            }
031    
032            public long getPrimaryKey() {
033                    return _account.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _account.setPrimaryKey(pk);
038            }
039    
040            public long getAccountId() {
041                    return _account.getAccountId();
042            }
043    
044            public void setAccountId(long accountId) {
045                    _account.setAccountId(accountId);
046            }
047    
048            public long getCompanyId() {
049                    return _account.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _account.setCompanyId(companyId);
054            }
055    
056            public long getUserId() {
057                    return _account.getUserId();
058            }
059    
060            public void setUserId(long userId) {
061                    _account.setUserId(userId);
062            }
063    
064            public java.lang.String getUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _account.getUserUuid();
067            }
068    
069            public void setUserUuid(java.lang.String userUuid) {
070                    _account.setUserUuid(userUuid);
071            }
072    
073            public java.lang.String getUserName() {
074                    return _account.getUserName();
075            }
076    
077            public void setUserName(java.lang.String userName) {
078                    _account.setUserName(userName);
079            }
080    
081            public java.util.Date getCreateDate() {
082                    return _account.getCreateDate();
083            }
084    
085            public void setCreateDate(java.util.Date createDate) {
086                    _account.setCreateDate(createDate);
087            }
088    
089            public java.util.Date getModifiedDate() {
090                    return _account.getModifiedDate();
091            }
092    
093            public void setModifiedDate(java.util.Date modifiedDate) {
094                    _account.setModifiedDate(modifiedDate);
095            }
096    
097            public long getParentAccountId() {
098                    return _account.getParentAccountId();
099            }
100    
101            public void setParentAccountId(long parentAccountId) {
102                    _account.setParentAccountId(parentAccountId);
103            }
104    
105            public java.lang.String getName() {
106                    return _account.getName();
107            }
108    
109            public void setName(java.lang.String name) {
110                    _account.setName(name);
111            }
112    
113            public java.lang.String getLegalName() {
114                    return _account.getLegalName();
115            }
116    
117            public void setLegalName(java.lang.String legalName) {
118                    _account.setLegalName(legalName);
119            }
120    
121            public java.lang.String getLegalId() {
122                    return _account.getLegalId();
123            }
124    
125            public void setLegalId(java.lang.String legalId) {
126                    _account.setLegalId(legalId);
127            }
128    
129            public java.lang.String getLegalType() {
130                    return _account.getLegalType();
131            }
132    
133            public void setLegalType(java.lang.String legalType) {
134                    _account.setLegalType(legalType);
135            }
136    
137            public java.lang.String getSicCode() {
138                    return _account.getSicCode();
139            }
140    
141            public void setSicCode(java.lang.String sicCode) {
142                    _account.setSicCode(sicCode);
143            }
144    
145            public java.lang.String getTickerSymbol() {
146                    return _account.getTickerSymbol();
147            }
148    
149            public void setTickerSymbol(java.lang.String tickerSymbol) {
150                    _account.setTickerSymbol(tickerSymbol);
151            }
152    
153            public java.lang.String getIndustry() {
154                    return _account.getIndustry();
155            }
156    
157            public void setIndustry(java.lang.String industry) {
158                    _account.setIndustry(industry);
159            }
160    
161            public java.lang.String getType() {
162                    return _account.getType();
163            }
164    
165            public void setType(java.lang.String type) {
166                    _account.setType(type);
167            }
168    
169            public java.lang.String getSize() {
170                    return _account.getSize();
171            }
172    
173            public void setSize(java.lang.String size) {
174                    _account.setSize(size);
175            }
176    
177            public com.liferay.portal.model.Account toEscapedModel() {
178                    return _account.toEscapedModel();
179            }
180    
181            public boolean isNew() {
182                    return _account.isNew();
183            }
184    
185            public void setNew(boolean n) {
186                    _account.setNew(n);
187            }
188    
189            public boolean isCachedModel() {
190                    return _account.isCachedModel();
191            }
192    
193            public void setCachedModel(boolean cachedModel) {
194                    _account.setCachedModel(cachedModel);
195            }
196    
197            public boolean isEscapedModel() {
198                    return _account.isEscapedModel();
199            }
200    
201            public void setEscapedModel(boolean escapedModel) {
202                    _account.setEscapedModel(escapedModel);
203            }
204    
205            public java.io.Serializable getPrimaryKeyObj() {
206                    return _account.getPrimaryKeyObj();
207            }
208    
209            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
210                    return _account.getExpandoBridge();
211            }
212    
213            public void setExpandoBridgeAttributes(
214                    com.liferay.portal.service.ServiceContext serviceContext) {
215                    _account.setExpandoBridgeAttributes(serviceContext);
216            }
217    
218            public java.lang.Object clone() {
219                    return _account.clone();
220            }
221    
222            public int compareTo(com.liferay.portal.model.Account account) {
223                    return _account.compareTo(account);
224            }
225    
226            public int hashCode() {
227                    return _account.hashCode();
228            }
229    
230            public java.lang.String toString() {
231                    return _account.toString();
232            }
233    
234            public java.lang.String toXmlString() {
235                    return _account.toXmlString();
236            }
237    
238            public Account getWrappedAccount() {
239                    return _account;
240            }
241    
242            private Account _account;
243    }