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="BrowserTrackerSoap.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 BrowserTracker}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       BrowserTracker
31   * @generated
32   */
33  public class BrowserTrackerWrapper implements BrowserTracker {
34      public BrowserTrackerWrapper(BrowserTracker browserTracker) {
35          _browserTracker = browserTracker;
36      }
37  
38      public long getPrimaryKey() {
39          return _browserTracker.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _browserTracker.setPrimaryKey(pk);
44      }
45  
46      public long getBrowserTrackerId() {
47          return _browserTracker.getBrowserTrackerId();
48      }
49  
50      public void setBrowserTrackerId(long browserTrackerId) {
51          _browserTracker.setBrowserTrackerId(browserTrackerId);
52      }
53  
54      public long getUserId() {
55          return _browserTracker.getUserId();
56      }
57  
58      public void setUserId(long userId) {
59          _browserTracker.setUserId(userId);
60      }
61  
62      public java.lang.String getUserUuid()
63          throws com.liferay.portal.SystemException {
64          return _browserTracker.getUserUuid();
65      }
66  
67      public void setUserUuid(java.lang.String userUuid) {
68          _browserTracker.setUserUuid(userUuid);
69      }
70  
71      public long getBrowserKey() {
72          return _browserTracker.getBrowserKey();
73      }
74  
75      public void setBrowserKey(long browserKey) {
76          _browserTracker.setBrowserKey(browserKey);
77      }
78  
79      public boolean isNew() {
80          return _browserTracker.isNew();
81      }
82  
83      public boolean setNew(boolean n) {
84          return _browserTracker.setNew(n);
85      }
86  
87      public boolean isCachedModel() {
88          return _browserTracker.isCachedModel();
89      }
90  
91      public void setCachedModel(boolean cachedModel) {
92          _browserTracker.setCachedModel(cachedModel);
93      }
94  
95      public boolean isEscapedModel() {
96          return _browserTracker.isEscapedModel();
97      }
98  
99      public void setEscapedModel(boolean escapedModel) {
100         _browserTracker.setEscapedModel(escapedModel);
101     }
102 
103     public java.io.Serializable getPrimaryKeyObj() {
104         return _browserTracker.getPrimaryKeyObj();
105     }
106 
107     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
108         return _browserTracker.getExpandoBridge();
109     }
110 
111     public void setExpandoBridgeAttributes(
112         com.liferay.portal.service.ServiceContext serviceContext) {
113         _browserTracker.setExpandoBridgeAttributes(serviceContext);
114     }
115 
116     public java.lang.Object clone() {
117         return _browserTracker.clone();
118     }
119 
120     public int compareTo(com.liferay.portal.model.BrowserTracker browserTracker) {
121         return _browserTracker.compareTo(browserTracker);
122     }
123 
124     public int hashCode() {
125         return _browserTracker.hashCode();
126     }
127 
128     public com.liferay.portal.model.BrowserTracker toEscapedModel() {
129         return _browserTracker.toEscapedModel();
130     }
131 
132     public java.lang.String toString() {
133         return _browserTracker.toString();
134     }
135 
136     public java.lang.String toXmlString() {
137         return _browserTracker.toXmlString();
138     }
139 
140     public BrowserTracker getWrappedBrowserTracker() {
141         return _browserTracker;
142     }
143 
144     private BrowserTracker _browserTracker;
145 }