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.portlet.social.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link SocialRequest}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       SocialRequest
025     * @generated
026     */
027    public class SocialRequestWrapper implements SocialRequest {
028            public SocialRequestWrapper(SocialRequest socialRequest) {
029                    _socialRequest = socialRequest;
030            }
031    
032            public long getPrimaryKey() {
033                    return _socialRequest.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _socialRequest.setPrimaryKey(pk);
038            }
039    
040            public java.lang.String getUuid() {
041                    return _socialRequest.getUuid();
042            }
043    
044            public void setUuid(java.lang.String uuid) {
045                    _socialRequest.setUuid(uuid);
046            }
047    
048            public long getRequestId() {
049                    return _socialRequest.getRequestId();
050            }
051    
052            public void setRequestId(long requestId) {
053                    _socialRequest.setRequestId(requestId);
054            }
055    
056            public long getGroupId() {
057                    return _socialRequest.getGroupId();
058            }
059    
060            public void setGroupId(long groupId) {
061                    _socialRequest.setGroupId(groupId);
062            }
063    
064            public long getCompanyId() {
065                    return _socialRequest.getCompanyId();
066            }
067    
068            public void setCompanyId(long companyId) {
069                    _socialRequest.setCompanyId(companyId);
070            }
071    
072            public long getUserId() {
073                    return _socialRequest.getUserId();
074            }
075    
076            public void setUserId(long userId) {
077                    _socialRequest.setUserId(userId);
078            }
079    
080            public java.lang.String getUserUuid()
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    return _socialRequest.getUserUuid();
083            }
084    
085            public void setUserUuid(java.lang.String userUuid) {
086                    _socialRequest.setUserUuid(userUuid);
087            }
088    
089            public long getCreateDate() {
090                    return _socialRequest.getCreateDate();
091            }
092    
093            public void setCreateDate(long createDate) {
094                    _socialRequest.setCreateDate(createDate);
095            }
096    
097            public long getModifiedDate() {
098                    return _socialRequest.getModifiedDate();
099            }
100    
101            public void setModifiedDate(long modifiedDate) {
102                    _socialRequest.setModifiedDate(modifiedDate);
103            }
104    
105            public java.lang.String getClassName() {
106                    return _socialRequest.getClassName();
107            }
108    
109            public long getClassNameId() {
110                    return _socialRequest.getClassNameId();
111            }
112    
113            public void setClassNameId(long classNameId) {
114                    _socialRequest.setClassNameId(classNameId);
115            }
116    
117            public long getClassPK() {
118                    return _socialRequest.getClassPK();
119            }
120    
121            public void setClassPK(long classPK) {
122                    _socialRequest.setClassPK(classPK);
123            }
124    
125            public int getType() {
126                    return _socialRequest.getType();
127            }
128    
129            public void setType(int type) {
130                    _socialRequest.setType(type);
131            }
132    
133            public java.lang.String getExtraData() {
134                    return _socialRequest.getExtraData();
135            }
136    
137            public void setExtraData(java.lang.String extraData) {
138                    _socialRequest.setExtraData(extraData);
139            }
140    
141            public long getReceiverUserId() {
142                    return _socialRequest.getReceiverUserId();
143            }
144    
145            public void setReceiverUserId(long receiverUserId) {
146                    _socialRequest.setReceiverUserId(receiverUserId);
147            }
148    
149            public java.lang.String getReceiverUserUuid()
150                    throws com.liferay.portal.kernel.exception.SystemException {
151                    return _socialRequest.getReceiverUserUuid();
152            }
153    
154            public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
155                    _socialRequest.setReceiverUserUuid(receiverUserUuid);
156            }
157    
158            public int getStatus() {
159                    return _socialRequest.getStatus();
160            }
161    
162            public void setStatus(int status) {
163                    _socialRequest.setStatus(status);
164            }
165    
166            public com.liferay.portlet.social.model.SocialRequest toEscapedModel() {
167                    return _socialRequest.toEscapedModel();
168            }
169    
170            public boolean isNew() {
171                    return _socialRequest.isNew();
172            }
173    
174            public void setNew(boolean n) {
175                    _socialRequest.setNew(n);
176            }
177    
178            public boolean isCachedModel() {
179                    return _socialRequest.isCachedModel();
180            }
181    
182            public void setCachedModel(boolean cachedModel) {
183                    _socialRequest.setCachedModel(cachedModel);
184            }
185    
186            public boolean isEscapedModel() {
187                    return _socialRequest.isEscapedModel();
188            }
189    
190            public void setEscapedModel(boolean escapedModel) {
191                    _socialRequest.setEscapedModel(escapedModel);
192            }
193    
194            public java.io.Serializable getPrimaryKeyObj() {
195                    return _socialRequest.getPrimaryKeyObj();
196            }
197    
198            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
199                    return _socialRequest.getExpandoBridge();
200            }
201    
202            public void setExpandoBridgeAttributes(
203                    com.liferay.portal.service.ServiceContext serviceContext) {
204                    _socialRequest.setExpandoBridgeAttributes(serviceContext);
205            }
206    
207            public java.lang.Object clone() {
208                    return _socialRequest.clone();
209            }
210    
211            public int compareTo(
212                    com.liferay.portlet.social.model.SocialRequest socialRequest) {
213                    return _socialRequest.compareTo(socialRequest);
214            }
215    
216            public int hashCode() {
217                    return _socialRequest.hashCode();
218            }
219    
220            public java.lang.String toString() {
221                    return _socialRequest.toString();
222            }
223    
224            public java.lang.String toXmlString() {
225                    return _socialRequest.toXmlString();
226            }
227    
228            public SocialRequest getWrappedSocialRequest() {
229                    return _socialRequest;
230            }
231    
232            private SocialRequest _socialRequest;
233    }