1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.model;
16  
17  /**
18   * <a href="UserTrackerSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link UserTracker}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       UserTracker
31   * @generated
32   */
33  public class UserTrackerWrapper implements UserTracker {
34      public UserTrackerWrapper(UserTracker userTracker) {
35          _userTracker = userTracker;
36      }
37  
38      public long getPrimaryKey() {
39          return _userTracker.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _userTracker.setPrimaryKey(pk);
44      }
45  
46      public long getUserTrackerId() {
47          return _userTracker.getUserTrackerId();
48      }
49  
50      public void setUserTrackerId(long userTrackerId) {
51          _userTracker.setUserTrackerId(userTrackerId);
52      }
53  
54      public long getCompanyId() {
55          return _userTracker.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _userTracker.setCompanyId(companyId);
60      }
61  
62      public long getUserId() {
63          return _userTracker.getUserId();
64      }
65  
66      public void setUserId(long userId) {
67          _userTracker.setUserId(userId);
68      }
69  
70      public java.lang.String getUserUuid()
71          throws com.liferay.portal.SystemException {
72          return _userTracker.getUserUuid();
73      }
74  
75      public void setUserUuid(java.lang.String userUuid) {
76          _userTracker.setUserUuid(userUuid);
77      }
78  
79      public java.util.Date getModifiedDate() {
80          return _userTracker.getModifiedDate();
81      }
82  
83      public void setModifiedDate(java.util.Date modifiedDate) {
84          _userTracker.setModifiedDate(modifiedDate);
85      }
86  
87      public java.lang.String getSessionId() {
88          return _userTracker.getSessionId();
89      }
90  
91      public void setSessionId(java.lang.String sessionId) {
92          _userTracker.setSessionId(sessionId);
93      }
94  
95      public java.lang.String getRemoteAddr() {
96          return _userTracker.getRemoteAddr();
97      }
98  
99      public void setRemoteAddr(java.lang.String remoteAddr) {
100         _userTracker.setRemoteAddr(remoteAddr);
101     }
102 
103     public java.lang.String getRemoteHost() {
104         return _userTracker.getRemoteHost();
105     }
106 
107     public void setRemoteHost(java.lang.String remoteHost) {
108         _userTracker.setRemoteHost(remoteHost);
109     }
110 
111     public java.lang.String getUserAgent() {
112         return _userTracker.getUserAgent();
113     }
114 
115     public void setUserAgent(java.lang.String userAgent) {
116         _userTracker.setUserAgent(userAgent);
117     }
118 
119     public boolean isNew() {
120         return _userTracker.isNew();
121     }
122 
123     public boolean setNew(boolean n) {
124         return _userTracker.setNew(n);
125     }
126 
127     public boolean isCachedModel() {
128         return _userTracker.isCachedModel();
129     }
130 
131     public void setCachedModel(boolean cachedModel) {
132         _userTracker.setCachedModel(cachedModel);
133     }
134 
135     public boolean isEscapedModel() {
136         return _userTracker.isEscapedModel();
137     }
138 
139     public void setEscapedModel(boolean escapedModel) {
140         _userTracker.setEscapedModel(escapedModel);
141     }
142 
143     public java.io.Serializable getPrimaryKeyObj() {
144         return _userTracker.getPrimaryKeyObj();
145     }
146 
147     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
148         return _userTracker.getExpandoBridge();
149     }
150 
151     public void setExpandoBridgeAttributes(
152         com.liferay.portal.service.ServiceContext serviceContext) {
153         _userTracker.setExpandoBridgeAttributes(serviceContext);
154     }
155 
156     public java.lang.Object clone() {
157         return _userTracker.clone();
158     }
159 
160     public int compareTo(com.liferay.portal.model.UserTracker userTracker) {
161         return _userTracker.compareTo(userTracker);
162     }
163 
164     public int hashCode() {
165         return _userTracker.hashCode();
166     }
167 
168     public com.liferay.portal.model.UserTracker toEscapedModel() {
169         return _userTracker.toEscapedModel();
170     }
171 
172     public java.lang.String toString() {
173         return _userTracker.toString();
174     }
175 
176     public java.lang.String toXmlString() {
177         return _userTracker.toXmlString();
178     }
179 
180     public java.lang.String getFullName() {
181         return _userTracker.getFullName();
182     }
183 
184     public java.lang.String getEmailAddress() {
185         return _userTracker.getEmailAddress();
186     }
187 
188     public java.util.List<com.liferay.portal.model.UserTrackerPath> getPaths() {
189         return _userTracker.getPaths();
190     }
191 
192     public void addPath(com.liferay.portal.model.UserTrackerPath path) {
193         _userTracker.addPath(path);
194     }
195 
196     public int getHits() {
197         return _userTracker.getHits();
198     }
199 
200     public UserTracker getWrappedUserTracker() {
201         return _userTracker;
202     }
203 
204     private UserTracker _userTracker;
205 }