001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link UserIdMapper}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       UserIdMapper
024     * @generated
025     */
026    public class UserIdMapperWrapper implements UserIdMapper {
027            public UserIdMapperWrapper(UserIdMapper userIdMapper) {
028                    _userIdMapper = userIdMapper;
029            }
030    
031            /**
032            * Gets the primary key of this user id mapper.
033            *
034            * @return the primary key of this user id mapper
035            */
036            public long getPrimaryKey() {
037                    return _userIdMapper.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this user id mapper
042            *
043            * @param pk the primary key of this user id mapper
044            */
045            public void setPrimaryKey(long pk) {
046                    _userIdMapper.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the user id mapper id of this user id mapper.
051            *
052            * @return the user id mapper id of this user id mapper
053            */
054            public long getUserIdMapperId() {
055                    return _userIdMapper.getUserIdMapperId();
056            }
057    
058            /**
059            * Sets the user id mapper id of this user id mapper.
060            *
061            * @param userIdMapperId the user id mapper id of this user id mapper
062            */
063            public void setUserIdMapperId(long userIdMapperId) {
064                    _userIdMapper.setUserIdMapperId(userIdMapperId);
065            }
066    
067            /**
068            * Gets the user id of this user id mapper.
069            *
070            * @return the user id of this user id mapper
071            */
072            public long getUserId() {
073                    return _userIdMapper.getUserId();
074            }
075    
076            /**
077            * Sets the user id of this user id mapper.
078            *
079            * @param userId the user id of this user id mapper
080            */
081            public void setUserId(long userId) {
082                    _userIdMapper.setUserId(userId);
083            }
084    
085            /**
086            * Gets the user uuid of this user id mapper.
087            *
088            * @return the user uuid of this user id mapper
089            * @throws SystemException if a system exception occurred
090            */
091            public java.lang.String getUserUuid()
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _userIdMapper.getUserUuid();
094            }
095    
096            /**
097            * Sets the user uuid of this user id mapper.
098            *
099            * @param userUuid the user uuid of this user id mapper
100            */
101            public void setUserUuid(java.lang.String userUuid) {
102                    _userIdMapper.setUserUuid(userUuid);
103            }
104    
105            /**
106            * Gets the type of this user id mapper.
107            *
108            * @return the type of this user id mapper
109            */
110            public java.lang.String getType() {
111                    return _userIdMapper.getType();
112            }
113    
114            /**
115            * Sets the type of this user id mapper.
116            *
117            * @param type the type of this user id mapper
118            */
119            public void setType(java.lang.String type) {
120                    _userIdMapper.setType(type);
121            }
122    
123            /**
124            * Gets the description of this user id mapper.
125            *
126            * @return the description of this user id mapper
127            */
128            public java.lang.String getDescription() {
129                    return _userIdMapper.getDescription();
130            }
131    
132            /**
133            * Sets the description of this user id mapper.
134            *
135            * @param description the description of this user id mapper
136            */
137            public void setDescription(java.lang.String description) {
138                    _userIdMapper.setDescription(description);
139            }
140    
141            /**
142            * Gets the external user id of this user id mapper.
143            *
144            * @return the external user id of this user id mapper
145            */
146            public java.lang.String getExternalUserId() {
147                    return _userIdMapper.getExternalUserId();
148            }
149    
150            /**
151            * Sets the external user id of this user id mapper.
152            *
153            * @param externalUserId the external user id of this user id mapper
154            */
155            public void setExternalUserId(java.lang.String externalUserId) {
156                    _userIdMapper.setExternalUserId(externalUserId);
157            }
158    
159            public boolean isNew() {
160                    return _userIdMapper.isNew();
161            }
162    
163            public void setNew(boolean n) {
164                    _userIdMapper.setNew(n);
165            }
166    
167            public boolean isCachedModel() {
168                    return _userIdMapper.isCachedModel();
169            }
170    
171            public void setCachedModel(boolean cachedModel) {
172                    _userIdMapper.setCachedModel(cachedModel);
173            }
174    
175            public boolean isEscapedModel() {
176                    return _userIdMapper.isEscapedModel();
177            }
178    
179            public void setEscapedModel(boolean escapedModel) {
180                    _userIdMapper.setEscapedModel(escapedModel);
181            }
182    
183            public java.io.Serializable getPrimaryKeyObj() {
184                    return _userIdMapper.getPrimaryKeyObj();
185            }
186    
187            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
188                    return _userIdMapper.getExpandoBridge();
189            }
190    
191            public void setExpandoBridgeAttributes(
192                    com.liferay.portal.service.ServiceContext serviceContext) {
193                    _userIdMapper.setExpandoBridgeAttributes(serviceContext);
194            }
195    
196            public java.lang.Object clone() {
197                    return _userIdMapper.clone();
198            }
199    
200            public int compareTo(com.liferay.portal.model.UserIdMapper userIdMapper) {
201                    return _userIdMapper.compareTo(userIdMapper);
202            }
203    
204            public int hashCode() {
205                    return _userIdMapper.hashCode();
206            }
207    
208            public com.liferay.portal.model.UserIdMapper toEscapedModel() {
209                    return _userIdMapper.toEscapedModel();
210            }
211    
212            public java.lang.String toString() {
213                    return _userIdMapper.toString();
214            }
215    
216            public java.lang.String toXmlString() {
217                    return _userIdMapper.toXmlString();
218            }
219    
220            public UserIdMapper getWrappedUserIdMapper() {
221                    return _userIdMapper;
222            }
223    
224            private UserIdMapper _userIdMapper;
225    }