001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link BrowserTracker}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       BrowserTracker
024     * @generated
025     */
026    public class BrowserTrackerWrapper implements BrowserTracker {
027            public BrowserTrackerWrapper(BrowserTracker browserTracker) {
028                    _browserTracker = browserTracker;
029            }
030    
031            /**
032            * Gets the primary key of this browser tracker.
033            *
034            * @return the primary key of this browser tracker
035            */
036            public long getPrimaryKey() {
037                    return _browserTracker.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this browser tracker
042            *
043            * @param pk the primary key of this browser tracker
044            */
045            public void setPrimaryKey(long pk) {
046                    _browserTracker.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the browser tracker id of this browser tracker.
051            *
052            * @return the browser tracker id of this browser tracker
053            */
054            public long getBrowserTrackerId() {
055                    return _browserTracker.getBrowserTrackerId();
056            }
057    
058            /**
059            * Sets the browser tracker id of this browser tracker.
060            *
061            * @param browserTrackerId the browser tracker id of this browser tracker
062            */
063            public void setBrowserTrackerId(long browserTrackerId) {
064                    _browserTracker.setBrowserTrackerId(browserTrackerId);
065            }
066    
067            /**
068            * Gets the user id of this browser tracker.
069            *
070            * @return the user id of this browser tracker
071            */
072            public long getUserId() {
073                    return _browserTracker.getUserId();
074            }
075    
076            /**
077            * Sets the user id of this browser tracker.
078            *
079            * @param userId the user id of this browser tracker
080            */
081            public void setUserId(long userId) {
082                    _browserTracker.setUserId(userId);
083            }
084    
085            /**
086            * Gets the user uuid of this browser tracker.
087            *
088            * @return the user uuid of this browser tracker
089            * @throws SystemException if a system exception occurred
090            */
091            public java.lang.String getUserUuid()
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _browserTracker.getUserUuid();
094            }
095    
096            /**
097            * Sets the user uuid of this browser tracker.
098            *
099            * @param userUuid the user uuid of this browser tracker
100            */
101            public void setUserUuid(java.lang.String userUuid) {
102                    _browserTracker.setUserUuid(userUuid);
103            }
104    
105            /**
106            * Gets the browser key of this browser tracker.
107            *
108            * @return the browser key of this browser tracker
109            */
110            public long getBrowserKey() {
111                    return _browserTracker.getBrowserKey();
112            }
113    
114            /**
115            * Sets the browser key of this browser tracker.
116            *
117            * @param browserKey the browser key of this browser tracker
118            */
119            public void setBrowserKey(long browserKey) {
120                    _browserTracker.setBrowserKey(browserKey);
121            }
122    
123            public boolean isNew() {
124                    return _browserTracker.isNew();
125            }
126    
127            public void setNew(boolean n) {
128                    _browserTracker.setNew(n);
129            }
130    
131            public boolean isCachedModel() {
132                    return _browserTracker.isCachedModel();
133            }
134    
135            public void setCachedModel(boolean cachedModel) {
136                    _browserTracker.setCachedModel(cachedModel);
137            }
138    
139            public boolean isEscapedModel() {
140                    return _browserTracker.isEscapedModel();
141            }
142    
143            public void setEscapedModel(boolean escapedModel) {
144                    _browserTracker.setEscapedModel(escapedModel);
145            }
146    
147            public java.io.Serializable getPrimaryKeyObj() {
148                    return _browserTracker.getPrimaryKeyObj();
149            }
150    
151            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
152                    return _browserTracker.getExpandoBridge();
153            }
154    
155            public void setExpandoBridgeAttributes(
156                    com.liferay.portal.service.ServiceContext serviceContext) {
157                    _browserTracker.setExpandoBridgeAttributes(serviceContext);
158            }
159    
160            public java.lang.Object clone() {
161                    return _browserTracker.clone();
162            }
163    
164            public int compareTo(com.liferay.portal.model.BrowserTracker browserTracker) {
165                    return _browserTracker.compareTo(browserTracker);
166            }
167    
168            public int hashCode() {
169                    return _browserTracker.hashCode();
170            }
171    
172            public com.liferay.portal.model.BrowserTracker toEscapedModel() {
173                    return _browserTracker.toEscapedModel();
174            }
175    
176            public java.lang.String toString() {
177                    return _browserTracker.toString();
178            }
179    
180            public java.lang.String toXmlString() {
181                    return _browserTracker.toXmlString();
182            }
183    
184            public BrowserTracker getWrappedBrowserTracker() {
185                    return _browserTracker;
186            }
187    
188            private BrowserTracker _browserTracker;
189    }