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 UserTracker}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       UserTracker
025     * @generated
026     */
027    public class UserTrackerWrapper implements UserTracker {
028            public UserTrackerWrapper(UserTracker userTracker) {
029                    _userTracker = userTracker;
030            }
031    
032            public long getPrimaryKey() {
033                    return _userTracker.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _userTracker.setPrimaryKey(pk);
038            }
039    
040            public long getUserTrackerId() {
041                    return _userTracker.getUserTrackerId();
042            }
043    
044            public void setUserTrackerId(long userTrackerId) {
045                    _userTracker.setUserTrackerId(userTrackerId);
046            }
047    
048            public long getCompanyId() {
049                    return _userTracker.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _userTracker.setCompanyId(companyId);
054            }
055    
056            public long getUserId() {
057                    return _userTracker.getUserId();
058            }
059    
060            public void setUserId(long userId) {
061                    _userTracker.setUserId(userId);
062            }
063    
064            public java.lang.String getUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _userTracker.getUserUuid();
067            }
068    
069            public void setUserUuid(java.lang.String userUuid) {
070                    _userTracker.setUserUuid(userUuid);
071            }
072    
073            public java.util.Date getModifiedDate() {
074                    return _userTracker.getModifiedDate();
075            }
076    
077            public void setModifiedDate(java.util.Date modifiedDate) {
078                    _userTracker.setModifiedDate(modifiedDate);
079            }
080    
081            public java.lang.String getSessionId() {
082                    return _userTracker.getSessionId();
083            }
084    
085            public void setSessionId(java.lang.String sessionId) {
086                    _userTracker.setSessionId(sessionId);
087            }
088    
089            public java.lang.String getRemoteAddr() {
090                    return _userTracker.getRemoteAddr();
091            }
092    
093            public void setRemoteAddr(java.lang.String remoteAddr) {
094                    _userTracker.setRemoteAddr(remoteAddr);
095            }
096    
097            public java.lang.String getRemoteHost() {
098                    return _userTracker.getRemoteHost();
099            }
100    
101            public void setRemoteHost(java.lang.String remoteHost) {
102                    _userTracker.setRemoteHost(remoteHost);
103            }
104    
105            public java.lang.String getUserAgent() {
106                    return _userTracker.getUserAgent();
107            }
108    
109            public void setUserAgent(java.lang.String userAgent) {
110                    _userTracker.setUserAgent(userAgent);
111            }
112    
113            public com.liferay.portal.model.UserTracker toEscapedModel() {
114                    return _userTracker.toEscapedModel();
115            }
116    
117            public boolean isNew() {
118                    return _userTracker.isNew();
119            }
120    
121            public void setNew(boolean n) {
122                    _userTracker.setNew(n);
123            }
124    
125            public boolean isCachedModel() {
126                    return _userTracker.isCachedModel();
127            }
128    
129            public void setCachedModel(boolean cachedModel) {
130                    _userTracker.setCachedModel(cachedModel);
131            }
132    
133            public boolean isEscapedModel() {
134                    return _userTracker.isEscapedModel();
135            }
136    
137            public void setEscapedModel(boolean escapedModel) {
138                    _userTracker.setEscapedModel(escapedModel);
139            }
140    
141            public java.io.Serializable getPrimaryKeyObj() {
142                    return _userTracker.getPrimaryKeyObj();
143            }
144    
145            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
146                    return _userTracker.getExpandoBridge();
147            }
148    
149            public void setExpandoBridgeAttributes(
150                    com.liferay.portal.service.ServiceContext serviceContext) {
151                    _userTracker.setExpandoBridgeAttributes(serviceContext);
152            }
153    
154            public java.lang.Object clone() {
155                    return _userTracker.clone();
156            }
157    
158            public int compareTo(com.liferay.portal.model.UserTracker userTracker) {
159                    return _userTracker.compareTo(userTracker);
160            }
161    
162            public int hashCode() {
163                    return _userTracker.hashCode();
164            }
165    
166            public java.lang.String toString() {
167                    return _userTracker.toString();
168            }
169    
170            public java.lang.String toXmlString() {
171                    return _userTracker.toXmlString();
172            }
173    
174            public java.lang.String getFullName() {
175                    return _userTracker.getFullName();
176            }
177    
178            public java.lang.String getEmailAddress() {
179                    return _userTracker.getEmailAddress();
180            }
181    
182            public java.util.List<com.liferay.portal.model.UserTrackerPath> getPaths() {
183                    return _userTracker.getPaths();
184            }
185    
186            public void addPath(com.liferay.portal.model.UserTrackerPath path) {
187                    _userTracker.addPath(path);
188            }
189    
190            public int getHits() {
191                    return _userTracker.getHits();
192            }
193    
194            public UserTracker getWrappedUserTracker() {
195                    return _userTracker;
196            }
197    
198            private UserTracker _userTracker;
199    }