001    /**
002     * Copyright (c) 2000-2011 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 UserTrackerPath}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       UserTrackerPath
024     * @generated
025     */
026    public class UserTrackerPathWrapper implements UserTrackerPath {
027            public UserTrackerPathWrapper(UserTrackerPath userTrackerPath) {
028                    _userTrackerPath = userTrackerPath;
029            }
030    
031            public long getPrimaryKey() {
032                    return _userTrackerPath.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _userTrackerPath.setPrimaryKey(pk);
037            }
038    
039            public long getUserTrackerPathId() {
040                    return _userTrackerPath.getUserTrackerPathId();
041            }
042    
043            public void setUserTrackerPathId(long userTrackerPathId) {
044                    _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
045            }
046    
047            public long getUserTrackerId() {
048                    return _userTrackerPath.getUserTrackerId();
049            }
050    
051            public void setUserTrackerId(long userTrackerId) {
052                    _userTrackerPath.setUserTrackerId(userTrackerId);
053            }
054    
055            public java.lang.String getPath() {
056                    return _userTrackerPath.getPath();
057            }
058    
059            public void setPath(java.lang.String path) {
060                    _userTrackerPath.setPath(path);
061            }
062    
063            public java.util.Date getPathDate() {
064                    return _userTrackerPath.getPathDate();
065            }
066    
067            public void setPathDate(java.util.Date pathDate) {
068                    _userTrackerPath.setPathDate(pathDate);
069            }
070    
071            public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
072                    return _userTrackerPath.toEscapedModel();
073            }
074    
075            public boolean isNew() {
076                    return _userTrackerPath.isNew();
077            }
078    
079            public void setNew(boolean n) {
080                    _userTrackerPath.setNew(n);
081            }
082    
083            public boolean isCachedModel() {
084                    return _userTrackerPath.isCachedModel();
085            }
086    
087            public void setCachedModel(boolean cachedModel) {
088                    _userTrackerPath.setCachedModel(cachedModel);
089            }
090    
091            public boolean isEscapedModel() {
092                    return _userTrackerPath.isEscapedModel();
093            }
094    
095            public void setEscapedModel(boolean escapedModel) {
096                    _userTrackerPath.setEscapedModel(escapedModel);
097            }
098    
099            public java.io.Serializable getPrimaryKeyObj() {
100                    return _userTrackerPath.getPrimaryKeyObj();
101            }
102    
103            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
104                    return _userTrackerPath.getExpandoBridge();
105            }
106    
107            public void setExpandoBridgeAttributes(
108                    com.liferay.portal.service.ServiceContext serviceContext) {
109                    _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
110            }
111    
112            public java.lang.Object clone() {
113                    return _userTrackerPath.clone();
114            }
115    
116            public int compareTo(
117                    com.liferay.portal.model.UserTrackerPath userTrackerPath) {
118                    return _userTrackerPath.compareTo(userTrackerPath);
119            }
120    
121            public int hashCode() {
122                    return _userTrackerPath.hashCode();
123            }
124    
125            public java.lang.String toString() {
126                    return _userTrackerPath.toString();
127            }
128    
129            public java.lang.String toXmlString() {
130                    return _userTrackerPath.toXmlString();
131            }
132    
133            public UserTrackerPath getWrappedUserTrackerPath() {
134                    return _userTrackerPath;
135            }
136    
137            private UserTrackerPath _userTrackerPath;
138    }