001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link BrowserTracker}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       BrowserTracker
025     * @generated
026     */
027    public class BrowserTrackerWrapper implements BrowserTracker {
028            public BrowserTrackerWrapper(BrowserTracker browserTracker) {
029                    _browserTracker = browserTracker;
030            }
031    
032            public long getPrimaryKey() {
033                    return _browserTracker.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _browserTracker.setPrimaryKey(pk);
038            }
039    
040            public long getBrowserTrackerId() {
041                    return _browserTracker.getBrowserTrackerId();
042            }
043    
044            public void setBrowserTrackerId(long browserTrackerId) {
045                    _browserTracker.setBrowserTrackerId(browserTrackerId);
046            }
047    
048            public long getUserId() {
049                    return _browserTracker.getUserId();
050            }
051    
052            public void setUserId(long userId) {
053                    _browserTracker.setUserId(userId);
054            }
055    
056            public java.lang.String getUserUuid()
057                    throws com.liferay.portal.kernel.exception.SystemException {
058                    return _browserTracker.getUserUuid();
059            }
060    
061            public void setUserUuid(java.lang.String userUuid) {
062                    _browserTracker.setUserUuid(userUuid);
063            }
064    
065            public long getBrowserKey() {
066                    return _browserTracker.getBrowserKey();
067            }
068    
069            public void setBrowserKey(long browserKey) {
070                    _browserTracker.setBrowserKey(browserKey);
071            }
072    
073            public com.liferay.portal.model.BrowserTracker toEscapedModel() {
074                    return _browserTracker.toEscapedModel();
075            }
076    
077            public boolean isNew() {
078                    return _browserTracker.isNew();
079            }
080    
081            public void setNew(boolean n) {
082                    _browserTracker.setNew(n);
083            }
084    
085            public boolean isCachedModel() {
086                    return _browserTracker.isCachedModel();
087            }
088    
089            public void setCachedModel(boolean cachedModel) {
090                    _browserTracker.setCachedModel(cachedModel);
091            }
092    
093            public boolean isEscapedModel() {
094                    return _browserTracker.isEscapedModel();
095            }
096    
097            public void setEscapedModel(boolean escapedModel) {
098                    _browserTracker.setEscapedModel(escapedModel);
099            }
100    
101            public java.io.Serializable getPrimaryKeyObj() {
102                    return _browserTracker.getPrimaryKeyObj();
103            }
104    
105            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
106                    return _browserTracker.getExpandoBridge();
107            }
108    
109            public void setExpandoBridgeAttributes(
110                    com.liferay.portal.service.ServiceContext serviceContext) {
111                    _browserTracker.setExpandoBridgeAttributes(serviceContext);
112            }
113    
114            public java.lang.Object clone() {
115                    return _browserTracker.clone();
116            }
117    
118            public int compareTo(com.liferay.portal.model.BrowserTracker browserTracker) {
119                    return _browserTracker.compareTo(browserTracker);
120            }
121    
122            public int hashCode() {
123                    return _browserTracker.hashCode();
124            }
125    
126            public java.lang.String toString() {
127                    return _browserTracker.toString();
128            }
129    
130            public java.lang.String toXmlString() {
131                    return _browserTracker.toXmlString();
132            }
133    
134            public BrowserTracker getWrappedBrowserTracker() {
135                    return _browserTracker;
136            }
137    
138            private BrowserTracker _browserTracker;
139    }