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