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     * <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            public long getPrimaryKey() {
032                    return _browserTracker.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _browserTracker.setPrimaryKey(pk);
037            }
038    
039            public long getBrowserTrackerId() {
040                    return _browserTracker.getBrowserTrackerId();
041            }
042    
043            public void setBrowserTrackerId(long browserTrackerId) {
044                    _browserTracker.setBrowserTrackerId(browserTrackerId);
045            }
046    
047            public long getUserId() {
048                    return _browserTracker.getUserId();
049            }
050    
051            public void setUserId(long userId) {
052                    _browserTracker.setUserId(userId);
053            }
054    
055            public java.lang.String getUserUuid()
056                    throws com.liferay.portal.kernel.exception.SystemException {
057                    return _browserTracker.getUserUuid();
058            }
059    
060            public void setUserUuid(java.lang.String userUuid) {
061                    _browserTracker.setUserUuid(userUuid);
062            }
063    
064            public long getBrowserKey() {
065                    return _browserTracker.getBrowserKey();
066            }
067    
068            public void setBrowserKey(long browserKey) {
069                    _browserTracker.setBrowserKey(browserKey);
070            }
071    
072            public com.liferay.portal.model.BrowserTracker toEscapedModel() {
073                    return _browserTracker.toEscapedModel();
074            }
075    
076            public boolean isNew() {
077                    return _browserTracker.isNew();
078            }
079    
080            public void setNew(boolean n) {
081                    _browserTracker.setNew(n);
082            }
083    
084            public boolean isCachedModel() {
085                    return _browserTracker.isCachedModel();
086            }
087    
088            public void setCachedModel(boolean cachedModel) {
089                    _browserTracker.setCachedModel(cachedModel);
090            }
091    
092            public boolean isEscapedModel() {
093                    return _browserTracker.isEscapedModel();
094            }
095    
096            public void setEscapedModel(boolean escapedModel) {
097                    _browserTracker.setEscapedModel(escapedModel);
098            }
099    
100            public java.io.Serializable getPrimaryKeyObj() {
101                    return _browserTracker.getPrimaryKeyObj();
102            }
103    
104            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
105                    return _browserTracker.getExpandoBridge();
106            }
107    
108            public void setExpandoBridgeAttributes(
109                    com.liferay.portal.service.ServiceContext serviceContext) {
110                    _browserTracker.setExpandoBridgeAttributes(serviceContext);
111            }
112    
113            public java.lang.Object clone() {
114                    return _browserTracker.clone();
115            }
116    
117            public int compareTo(com.liferay.portal.model.BrowserTracker browserTracker) {
118                    return _browserTracker.compareTo(browserTracker);
119            }
120    
121            public int hashCode() {
122                    return _browserTracker.hashCode();
123            }
124    
125            public java.lang.String toString() {
126                    return _browserTracker.toString();
127            }
128    
129            public java.lang.String toXmlString() {
130                    return _browserTracker.toXmlString();
131            }
132    
133            public BrowserTracker getWrappedBrowserTracker() {
134                    return _browserTracker;
135            }
136    
137            private BrowserTracker _browserTracker;
138    }