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