001    /**
002     * Copyright (c) 2000-2011 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     * <p>
019     * This class is a wrapper for {@link UserTracker}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       UserTracker
024     * @generated
025     */
026    public class UserTrackerWrapper implements UserTracker {
027            public UserTrackerWrapper(UserTracker userTracker) {
028                    _userTracker = userTracker;
029            }
030    
031            public Class<?> getModelClass() {
032                    return UserTracker.class;
033            }
034    
035            public String getModelClassName() {
036                    return UserTracker.class.getName();
037            }
038    
039            /**
040            * Returns the primary key of this user tracker.
041            *
042            * @return the primary key of this user tracker
043            */
044            public long getPrimaryKey() {
045                    return _userTracker.getPrimaryKey();
046            }
047    
048            /**
049            * Sets the primary key of this user tracker.
050            *
051            * @param primaryKey the primary key of this user tracker
052            */
053            public void setPrimaryKey(long primaryKey) {
054                    _userTracker.setPrimaryKey(primaryKey);
055            }
056    
057            /**
058            * Returns the user tracker ID of this user tracker.
059            *
060            * @return the user tracker ID of this user tracker
061            */
062            public long getUserTrackerId() {
063                    return _userTracker.getUserTrackerId();
064            }
065    
066            /**
067            * Sets the user tracker ID of this user tracker.
068            *
069            * @param userTrackerId the user tracker ID of this user tracker
070            */
071            public void setUserTrackerId(long userTrackerId) {
072                    _userTracker.setUserTrackerId(userTrackerId);
073            }
074    
075            /**
076            * Returns the company ID of this user tracker.
077            *
078            * @return the company ID of this user tracker
079            */
080            public long getCompanyId() {
081                    return _userTracker.getCompanyId();
082            }
083    
084            /**
085            * Sets the company ID of this user tracker.
086            *
087            * @param companyId the company ID of this user tracker
088            */
089            public void setCompanyId(long companyId) {
090                    _userTracker.setCompanyId(companyId);
091            }
092    
093            /**
094            * Returns the user ID of this user tracker.
095            *
096            * @return the user ID of this user tracker
097            */
098            public long getUserId() {
099                    return _userTracker.getUserId();
100            }
101    
102            /**
103            * Sets the user ID of this user tracker.
104            *
105            * @param userId the user ID of this user tracker
106            */
107            public void setUserId(long userId) {
108                    _userTracker.setUserId(userId);
109            }
110    
111            /**
112            * Returns the user uuid of this user tracker.
113            *
114            * @return the user uuid of this user tracker
115            * @throws SystemException if a system exception occurred
116            */
117            public java.lang.String getUserUuid()
118                    throws com.liferay.portal.kernel.exception.SystemException {
119                    return _userTracker.getUserUuid();
120            }
121    
122            /**
123            * Sets the user uuid of this user tracker.
124            *
125            * @param userUuid the user uuid of this user tracker
126            */
127            public void setUserUuid(java.lang.String userUuid) {
128                    _userTracker.setUserUuid(userUuid);
129            }
130    
131            /**
132            * Returns the modified date of this user tracker.
133            *
134            * @return the modified date of this user tracker
135            */
136            public java.util.Date getModifiedDate() {
137                    return _userTracker.getModifiedDate();
138            }
139    
140            /**
141            * Sets the modified date of this user tracker.
142            *
143            * @param modifiedDate the modified date of this user tracker
144            */
145            public void setModifiedDate(java.util.Date modifiedDate) {
146                    _userTracker.setModifiedDate(modifiedDate);
147            }
148    
149            /**
150            * Returns the session ID of this user tracker.
151            *
152            * @return the session ID of this user tracker
153            */
154            public java.lang.String getSessionId() {
155                    return _userTracker.getSessionId();
156            }
157    
158            /**
159            * Sets the session ID of this user tracker.
160            *
161            * @param sessionId the session ID of this user tracker
162            */
163            public void setSessionId(java.lang.String sessionId) {
164                    _userTracker.setSessionId(sessionId);
165            }
166    
167            /**
168            * Returns the remote addr of this user tracker.
169            *
170            * @return the remote addr of this user tracker
171            */
172            public java.lang.String getRemoteAddr() {
173                    return _userTracker.getRemoteAddr();
174            }
175    
176            /**
177            * Sets the remote addr of this user tracker.
178            *
179            * @param remoteAddr the remote addr of this user tracker
180            */
181            public void setRemoteAddr(java.lang.String remoteAddr) {
182                    _userTracker.setRemoteAddr(remoteAddr);
183            }
184    
185            /**
186            * Returns the remote host of this user tracker.
187            *
188            * @return the remote host of this user tracker
189            */
190            public java.lang.String getRemoteHost() {
191                    return _userTracker.getRemoteHost();
192            }
193    
194            /**
195            * Sets the remote host of this user tracker.
196            *
197            * @param remoteHost the remote host of this user tracker
198            */
199            public void setRemoteHost(java.lang.String remoteHost) {
200                    _userTracker.setRemoteHost(remoteHost);
201            }
202    
203            /**
204            * Returns the user agent of this user tracker.
205            *
206            * @return the user agent of this user tracker
207            */
208            public java.lang.String getUserAgent() {
209                    return _userTracker.getUserAgent();
210            }
211    
212            /**
213            * Sets the user agent of this user tracker.
214            *
215            * @param userAgent the user agent of this user tracker
216            */
217            public void setUserAgent(java.lang.String userAgent) {
218                    _userTracker.setUserAgent(userAgent);
219            }
220    
221            public boolean isNew() {
222                    return _userTracker.isNew();
223            }
224    
225            public void setNew(boolean n) {
226                    _userTracker.setNew(n);
227            }
228    
229            public boolean isCachedModel() {
230                    return _userTracker.isCachedModel();
231            }
232    
233            public void setCachedModel(boolean cachedModel) {
234                    _userTracker.setCachedModel(cachedModel);
235            }
236    
237            public boolean isEscapedModel() {
238                    return _userTracker.isEscapedModel();
239            }
240    
241            public java.io.Serializable getPrimaryKeyObj() {
242                    return _userTracker.getPrimaryKeyObj();
243            }
244    
245            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
246                    _userTracker.setPrimaryKeyObj(primaryKeyObj);
247            }
248    
249            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
250                    return _userTracker.getExpandoBridge();
251            }
252    
253            public void setExpandoBridgeAttributes(
254                    com.liferay.portal.service.ServiceContext serviceContext) {
255                    _userTracker.setExpandoBridgeAttributes(serviceContext);
256            }
257    
258            @Override
259            public java.lang.Object clone() {
260                    return new UserTrackerWrapper((UserTracker)_userTracker.clone());
261            }
262    
263            public int compareTo(com.liferay.portal.model.UserTracker userTracker) {
264                    return _userTracker.compareTo(userTracker);
265            }
266    
267            @Override
268            public int hashCode() {
269                    return _userTracker.hashCode();
270            }
271    
272            public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserTracker> toCacheModel() {
273                    return _userTracker.toCacheModel();
274            }
275    
276            public com.liferay.portal.model.UserTracker toEscapedModel() {
277                    return new UserTrackerWrapper(_userTracker.toEscapedModel());
278            }
279    
280            @Override
281            public java.lang.String toString() {
282                    return _userTracker.toString();
283            }
284    
285            public java.lang.String toXmlString() {
286                    return _userTracker.toXmlString();
287            }
288    
289            public void persist()
290                    throws com.liferay.portal.kernel.exception.SystemException {
291                    _userTracker.persist();
292            }
293    
294            public java.lang.String getFullName() {
295                    return _userTracker.getFullName();
296            }
297    
298            public java.lang.String getEmailAddress() {
299                    return _userTracker.getEmailAddress();
300            }
301    
302            public java.util.List<com.liferay.portal.model.UserTrackerPath> getPaths() {
303                    return _userTracker.getPaths();
304            }
305    
306            public void addPath(com.liferay.portal.model.UserTrackerPath path) {
307                    _userTracker.addPath(path);
308            }
309    
310            public int getHits() {
311                    return _userTracker.getHits();
312            }
313    
314            public UserTracker getWrappedUserTracker() {
315                    return _userTracker;
316            }
317    
318            public void resetOriginalValues() {
319                    _userTracker.resetOriginalValues();
320            }
321    
322            private UserTracker _userTracker;
323    }