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     * <p>
019     * This class is a wrapper for {@link Account}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       Account
024     * @generated
025     */
026    public class AccountWrapper implements Account {
027            public AccountWrapper(Account account) {
028                    _account = account;
029            }
030    
031            public long getPrimaryKey() {
032                    return _account.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _account.setPrimaryKey(pk);
037            }
038    
039            public long getAccountId() {
040                    return _account.getAccountId();
041            }
042    
043            public void setAccountId(long accountId) {
044                    _account.setAccountId(accountId);
045            }
046    
047            public long getCompanyId() {
048                    return _account.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _account.setCompanyId(companyId);
053            }
054    
055            public long getUserId() {
056                    return _account.getUserId();
057            }
058    
059            public void setUserId(long userId) {
060                    _account.setUserId(userId);
061            }
062    
063            public java.lang.String getUserUuid()
064                    throws com.liferay.portal.kernel.exception.SystemException {
065                    return _account.getUserUuid();
066            }
067    
068            public void setUserUuid(java.lang.String userUuid) {
069                    _account.setUserUuid(userUuid);
070            }
071    
072            public java.lang.String getUserName() {
073                    return _account.getUserName();
074            }
075    
076            public void setUserName(java.lang.String userName) {
077                    _account.setUserName(userName);
078            }
079    
080            public java.util.Date getCreateDate() {
081                    return _account.getCreateDate();
082            }
083    
084            public void setCreateDate(java.util.Date createDate) {
085                    _account.setCreateDate(createDate);
086            }
087    
088            public java.util.Date getModifiedDate() {
089                    return _account.getModifiedDate();
090            }
091    
092            public void setModifiedDate(java.util.Date modifiedDate) {
093                    _account.setModifiedDate(modifiedDate);
094            }
095    
096            public long getParentAccountId() {
097                    return _account.getParentAccountId();
098            }
099    
100            public void setParentAccountId(long parentAccountId) {
101                    _account.setParentAccountId(parentAccountId);
102            }
103    
104            public java.lang.String getName() {
105                    return _account.getName();
106            }
107    
108            public void setName(java.lang.String name) {
109                    _account.setName(name);
110            }
111    
112            public java.lang.String getLegalName() {
113                    return _account.getLegalName();
114            }
115    
116            public void setLegalName(java.lang.String legalName) {
117                    _account.setLegalName(legalName);
118            }
119    
120            public java.lang.String getLegalId() {
121                    return _account.getLegalId();
122            }
123    
124            public void setLegalId(java.lang.String legalId) {
125                    _account.setLegalId(legalId);
126            }
127    
128            public java.lang.String getLegalType() {
129                    return _account.getLegalType();
130            }
131    
132            public void setLegalType(java.lang.String legalType) {
133                    _account.setLegalType(legalType);
134            }
135    
136            public java.lang.String getSicCode() {
137                    return _account.getSicCode();
138            }
139    
140            public void setSicCode(java.lang.String sicCode) {
141                    _account.setSicCode(sicCode);
142            }
143    
144            public java.lang.String getTickerSymbol() {
145                    return _account.getTickerSymbol();
146            }
147    
148            public void setTickerSymbol(java.lang.String tickerSymbol) {
149                    _account.setTickerSymbol(tickerSymbol);
150            }
151    
152            public java.lang.String getIndustry() {
153                    return _account.getIndustry();
154            }
155    
156            public void setIndustry(java.lang.String industry) {
157                    _account.setIndustry(industry);
158            }
159    
160            public java.lang.String getType() {
161                    return _account.getType();
162            }
163    
164            public void setType(java.lang.String type) {
165                    _account.setType(type);
166            }
167    
168            public java.lang.String getSize() {
169                    return _account.getSize();
170            }
171    
172            public void setSize(java.lang.String size) {
173                    _account.setSize(size);
174            }
175    
176            public com.liferay.portal.model.Account toEscapedModel() {
177                    return _account.toEscapedModel();
178            }
179    
180            public boolean isNew() {
181                    return _account.isNew();
182            }
183    
184            public void setNew(boolean n) {
185                    _account.setNew(n);
186            }
187    
188            public boolean isCachedModel() {
189                    return _account.isCachedModel();
190            }
191    
192            public void setCachedModel(boolean cachedModel) {
193                    _account.setCachedModel(cachedModel);
194            }
195    
196            public boolean isEscapedModel() {
197                    return _account.isEscapedModel();
198            }
199    
200            public void setEscapedModel(boolean escapedModel) {
201                    _account.setEscapedModel(escapedModel);
202            }
203    
204            public java.io.Serializable getPrimaryKeyObj() {
205                    return _account.getPrimaryKeyObj();
206            }
207    
208            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
209                    return _account.getExpandoBridge();
210            }
211    
212            public void setExpandoBridgeAttributes(
213                    com.liferay.portal.service.ServiceContext serviceContext) {
214                    _account.setExpandoBridgeAttributes(serviceContext);
215            }
216    
217            public java.lang.Object clone() {
218                    return _account.clone();
219            }
220    
221            public int compareTo(com.liferay.portal.model.Account account) {
222                    return _account.compareTo(account);
223            }
224    
225            public int hashCode() {
226                    return _account.hashCode();
227            }
228    
229            public java.lang.String toString() {
230                    return _account.toString();
231            }
232    
233            public java.lang.String toXmlString() {
234                    return _account.toXmlString();
235            }
236    
237            public Account getWrappedAccount() {
238                    return _account;
239            }
240    
241            private Account _account;
242    }