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