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 UserIdMapper}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       UserIdMapper
025     * @generated
026     */
027    public class UserIdMapperWrapper implements UserIdMapper {
028            public UserIdMapperWrapper(UserIdMapper userIdMapper) {
029                    _userIdMapper = userIdMapper;
030            }
031    
032            public long getPrimaryKey() {
033                    return _userIdMapper.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _userIdMapper.setPrimaryKey(pk);
038            }
039    
040            public long getUserIdMapperId() {
041                    return _userIdMapper.getUserIdMapperId();
042            }
043    
044            public void setUserIdMapperId(long userIdMapperId) {
045                    _userIdMapper.setUserIdMapperId(userIdMapperId);
046            }
047    
048            public long getUserId() {
049                    return _userIdMapper.getUserId();
050            }
051    
052            public void setUserId(long userId) {
053                    _userIdMapper.setUserId(userId);
054            }
055    
056            public java.lang.String getUserUuid()
057                    throws com.liferay.portal.kernel.exception.SystemException {
058                    return _userIdMapper.getUserUuid();
059            }
060    
061            public void setUserUuid(java.lang.String userUuid) {
062                    _userIdMapper.setUserUuid(userUuid);
063            }
064    
065            public java.lang.String getType() {
066                    return _userIdMapper.getType();
067            }
068    
069            public void setType(java.lang.String type) {
070                    _userIdMapper.setType(type);
071            }
072    
073            public java.lang.String getDescription() {
074                    return _userIdMapper.getDescription();
075            }
076    
077            public void setDescription(java.lang.String description) {
078                    _userIdMapper.setDescription(description);
079            }
080    
081            public java.lang.String getExternalUserId() {
082                    return _userIdMapper.getExternalUserId();
083            }
084    
085            public void setExternalUserId(java.lang.String externalUserId) {
086                    _userIdMapper.setExternalUserId(externalUserId);
087            }
088    
089            public com.liferay.portal.model.UserIdMapper toEscapedModel() {
090                    return _userIdMapper.toEscapedModel();
091            }
092    
093            public boolean isNew() {
094                    return _userIdMapper.isNew();
095            }
096    
097            public void setNew(boolean n) {
098                    _userIdMapper.setNew(n);
099            }
100    
101            public boolean isCachedModel() {
102                    return _userIdMapper.isCachedModel();
103            }
104    
105            public void setCachedModel(boolean cachedModel) {
106                    _userIdMapper.setCachedModel(cachedModel);
107            }
108    
109            public boolean isEscapedModel() {
110                    return _userIdMapper.isEscapedModel();
111            }
112    
113            public void setEscapedModel(boolean escapedModel) {
114                    _userIdMapper.setEscapedModel(escapedModel);
115            }
116    
117            public java.io.Serializable getPrimaryKeyObj() {
118                    return _userIdMapper.getPrimaryKeyObj();
119            }
120    
121            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
122                    return _userIdMapper.getExpandoBridge();
123            }
124    
125            public void setExpandoBridgeAttributes(
126                    com.liferay.portal.service.ServiceContext serviceContext) {
127                    _userIdMapper.setExpandoBridgeAttributes(serviceContext);
128            }
129    
130            public java.lang.Object clone() {
131                    return _userIdMapper.clone();
132            }
133    
134            public int compareTo(com.liferay.portal.model.UserIdMapper userIdMapper) {
135                    return _userIdMapper.compareTo(userIdMapper);
136            }
137    
138            public int hashCode() {
139                    return _userIdMapper.hashCode();
140            }
141    
142            public java.lang.String toString() {
143                    return _userIdMapper.toString();
144            }
145    
146            public java.lang.String toXmlString() {
147                    return _userIdMapper.toXmlString();
148            }
149    
150            public UserIdMapper getWrappedUserIdMapper() {
151                    return _userIdMapper;
152            }
153    
154            private UserIdMapper _userIdMapper;
155    }