1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="UserIdMapperSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link UserIdMapper}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       UserIdMapper
32   * @generated
33   */
34  public class UserIdMapperWrapper implements UserIdMapper {
35      public UserIdMapperWrapper(UserIdMapper userIdMapper) {
36          _userIdMapper = userIdMapper;
37      }
38  
39      public long getPrimaryKey() {
40          return _userIdMapper.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _userIdMapper.setPrimaryKey(pk);
45      }
46  
47      public long getUserIdMapperId() {
48          return _userIdMapper.getUserIdMapperId();
49      }
50  
51      public void setUserIdMapperId(long userIdMapperId) {
52          _userIdMapper.setUserIdMapperId(userIdMapperId);
53      }
54  
55      public long getUserId() {
56          return _userIdMapper.getUserId();
57      }
58  
59      public void setUserId(long userId) {
60          _userIdMapper.setUserId(userId);
61      }
62  
63      public java.lang.String getUserUuid()
64          throws com.liferay.portal.kernel.exception.SystemException {
65          return _userIdMapper.getUserUuid();
66      }
67  
68      public void setUserUuid(java.lang.String userUuid) {
69          _userIdMapper.setUserUuid(userUuid);
70      }
71  
72      public java.lang.String getType() {
73          return _userIdMapper.getType();
74      }
75  
76      public void setType(java.lang.String type) {
77          _userIdMapper.setType(type);
78      }
79  
80      public java.lang.String getDescription() {
81          return _userIdMapper.getDescription();
82      }
83  
84      public void setDescription(java.lang.String description) {
85          _userIdMapper.setDescription(description);
86      }
87  
88      public java.lang.String getExternalUserId() {
89          return _userIdMapper.getExternalUserId();
90      }
91  
92      public void setExternalUserId(java.lang.String externalUserId) {
93          _userIdMapper.setExternalUserId(externalUserId);
94      }
95  
96      public com.liferay.portal.model.UserIdMapper toEscapedModel() {
97          return _userIdMapper.toEscapedModel();
98      }
99  
100     public boolean isNew() {
101         return _userIdMapper.isNew();
102     }
103 
104     public boolean setNew(boolean n) {
105         return _userIdMapper.setNew(n);
106     }
107 
108     public boolean isCachedModel() {
109         return _userIdMapper.isCachedModel();
110     }
111 
112     public void setCachedModel(boolean cachedModel) {
113         _userIdMapper.setCachedModel(cachedModel);
114     }
115 
116     public boolean isEscapedModel() {
117         return _userIdMapper.isEscapedModel();
118     }
119 
120     public void setEscapedModel(boolean escapedModel) {
121         _userIdMapper.setEscapedModel(escapedModel);
122     }
123 
124     public java.io.Serializable getPrimaryKeyObj() {
125         return _userIdMapper.getPrimaryKeyObj();
126     }
127 
128     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
129         return _userIdMapper.getExpandoBridge();
130     }
131 
132     public void setExpandoBridgeAttributes(
133         com.liferay.portal.service.ServiceContext serviceContext) {
134         _userIdMapper.setExpandoBridgeAttributes(serviceContext);
135     }
136 
137     public java.lang.Object clone() {
138         return _userIdMapper.clone();
139     }
140 
141     public int compareTo(com.liferay.portal.model.UserIdMapper userIdMapper) {
142         return _userIdMapper.compareTo(userIdMapper);
143     }
144 
145     public int hashCode() {
146         return _userIdMapper.hashCode();
147     }
148 
149     public java.lang.String toString() {
150         return _userIdMapper.toString();
151     }
152 
153     public java.lang.String toXmlString() {
154         return _userIdMapper.toXmlString();
155     }
156 
157     public UserIdMapper getWrappedUserIdMapper() {
158         return _userIdMapper;
159     }
160 
161     private UserIdMapper _userIdMapper;
162 }