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="UserTrackerSoap.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 UserTracker}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       UserTracker
32   * @generated
33   */
34  public class UserTrackerWrapper implements UserTracker {
35      public UserTrackerWrapper(UserTracker userTracker) {
36          _userTracker = userTracker;
37      }
38  
39      public long getPrimaryKey() {
40          return _userTracker.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _userTracker.setPrimaryKey(pk);
45      }
46  
47      public long getUserTrackerId() {
48          return _userTracker.getUserTrackerId();
49      }
50  
51      public void setUserTrackerId(long userTrackerId) {
52          _userTracker.setUserTrackerId(userTrackerId);
53      }
54  
55      public long getCompanyId() {
56          return _userTracker.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _userTracker.setCompanyId(companyId);
61      }
62  
63      public long getUserId() {
64          return _userTracker.getUserId();
65      }
66  
67      public void setUserId(long userId) {
68          _userTracker.setUserId(userId);
69      }
70  
71      public java.lang.String getUserUuid()
72          throws com.liferay.portal.kernel.exception.SystemException {
73          return _userTracker.getUserUuid();
74      }
75  
76      public void setUserUuid(java.lang.String userUuid) {
77          _userTracker.setUserUuid(userUuid);
78      }
79  
80      public java.util.Date getModifiedDate() {
81          return _userTracker.getModifiedDate();
82      }
83  
84      public void setModifiedDate(java.util.Date modifiedDate) {
85          _userTracker.setModifiedDate(modifiedDate);
86      }
87  
88      public java.lang.String getSessionId() {
89          return _userTracker.getSessionId();
90      }
91  
92      public void setSessionId(java.lang.String sessionId) {
93          _userTracker.setSessionId(sessionId);
94      }
95  
96      public java.lang.String getRemoteAddr() {
97          return _userTracker.getRemoteAddr();
98      }
99  
100     public void setRemoteAddr(java.lang.String remoteAddr) {
101         _userTracker.setRemoteAddr(remoteAddr);
102     }
103 
104     public java.lang.String getRemoteHost() {
105         return _userTracker.getRemoteHost();
106     }
107 
108     public void setRemoteHost(java.lang.String remoteHost) {
109         _userTracker.setRemoteHost(remoteHost);
110     }
111 
112     public java.lang.String getUserAgent() {
113         return _userTracker.getUserAgent();
114     }
115 
116     public void setUserAgent(java.lang.String userAgent) {
117         _userTracker.setUserAgent(userAgent);
118     }
119 
120     public com.liferay.portal.model.UserTracker toEscapedModel() {
121         return _userTracker.toEscapedModel();
122     }
123 
124     public boolean isNew() {
125         return _userTracker.isNew();
126     }
127 
128     public boolean setNew(boolean n) {
129         return _userTracker.setNew(n);
130     }
131 
132     public boolean isCachedModel() {
133         return _userTracker.isCachedModel();
134     }
135 
136     public void setCachedModel(boolean cachedModel) {
137         _userTracker.setCachedModel(cachedModel);
138     }
139 
140     public boolean isEscapedModel() {
141         return _userTracker.isEscapedModel();
142     }
143 
144     public void setEscapedModel(boolean escapedModel) {
145         _userTracker.setEscapedModel(escapedModel);
146     }
147 
148     public java.io.Serializable getPrimaryKeyObj() {
149         return _userTracker.getPrimaryKeyObj();
150     }
151 
152     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
153         return _userTracker.getExpandoBridge();
154     }
155 
156     public void setExpandoBridgeAttributes(
157         com.liferay.portal.service.ServiceContext serviceContext) {
158         _userTracker.setExpandoBridgeAttributes(serviceContext);
159     }
160 
161     public java.lang.Object clone() {
162         return _userTracker.clone();
163     }
164 
165     public int compareTo(com.liferay.portal.model.UserTracker userTracker) {
166         return _userTracker.compareTo(userTracker);
167     }
168 
169     public int hashCode() {
170         return _userTracker.hashCode();
171     }
172 
173     public java.lang.String toString() {
174         return _userTracker.toString();
175     }
176 
177     public java.lang.String toXmlString() {
178         return _userTracker.toXmlString();
179     }
180 
181     public java.lang.String getFullName() {
182         return _userTracker.getFullName();
183     }
184 
185     public java.lang.String getEmailAddress() {
186         return _userTracker.getEmailAddress();
187     }
188 
189     public java.util.List<com.liferay.portal.model.UserTrackerPath> getPaths() {
190         return _userTracker.getPaths();
191     }
192 
193     public void addPath(com.liferay.portal.model.UserTrackerPath path) {
194         _userTracker.addPath(path);
195     }
196 
197     public int getHits() {
198         return _userTracker.getHits();
199     }
200 
201     public UserTracker getWrappedUserTracker() {
202         return _userTracker;
203     }
204 
205     private UserTracker _userTracker;
206 }