001    /**
002     * Copyright (c) 2000-2011 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 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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 void setEscapedModel(boolean escapedModel) {
242                    _userTracker.setEscapedModel(escapedModel);
243            }
244    
245            public java.io.Serializable getPrimaryKeyObj() {
246                    return _userTracker.getPrimaryKeyObj();
247            }
248    
249            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
250                    _userTracker.setPrimaryKeyObj(primaryKeyObj);
251            }
252    
253            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
254                    return _userTracker.getExpandoBridge();
255            }
256    
257            public void setExpandoBridgeAttributes(
258                    com.liferay.portal.service.ServiceContext serviceContext) {
259                    _userTracker.setExpandoBridgeAttributes(serviceContext);
260            }
261    
262            @Override
263            public java.lang.Object clone() {
264                    return new UserTrackerWrapper((UserTracker)_userTracker.clone());
265            }
266    
267            public int compareTo(com.liferay.portal.model.UserTracker userTracker) {
268                    return _userTracker.compareTo(userTracker);
269            }
270    
271            @Override
272            public int hashCode() {
273                    return _userTracker.hashCode();
274            }
275    
276            public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserTracker> toCacheModel() {
277                    return _userTracker.toCacheModel();
278            }
279    
280            public com.liferay.portal.model.UserTracker toEscapedModel() {
281                    return new UserTrackerWrapper(_userTracker.toEscapedModel());
282            }
283    
284            @Override
285            public java.lang.String toString() {
286                    return _userTracker.toString();
287            }
288    
289            public java.lang.String toXmlString() {
290                    return _userTracker.toXmlString();
291            }
292    
293            public void persist()
294                    throws com.liferay.portal.kernel.exception.SystemException {
295                    _userTracker.persist();
296            }
297    
298            public java.lang.String getFullName() {
299                    return _userTracker.getFullName();
300            }
301    
302            public java.lang.String getEmailAddress() {
303                    return _userTracker.getEmailAddress();
304            }
305    
306            public java.util.List<com.liferay.portal.model.UserTrackerPath> getPaths() {
307                    return _userTracker.getPaths();
308            }
309    
310            public void addPath(com.liferay.portal.model.UserTrackerPath path) {
311                    _userTracker.addPath(path);
312            }
313    
314            public int getHits() {
315                    return _userTracker.getHits();
316            }
317    
318            public UserTracker getWrappedUserTracker() {
319                    return _userTracker;
320            }
321    
322            public void resetOriginalValues() {
323                    _userTracker.resetOriginalValues();
324            }
325    
326            private UserTracker _userTracker;
327    }