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 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            /**
032            * Gets the primary key of this user tracker path.
033            *
034            * @return the primary key of this user tracker path
035            */
036            public long getPrimaryKey() {
037                    return _userTrackerPath.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this user tracker path
042            *
043            * @param pk the primary key of this user tracker path
044            */
045            public void setPrimaryKey(long pk) {
046                    _userTrackerPath.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the user tracker path id of this user tracker path.
051            *
052            * @return the user tracker path id of this user tracker path
053            */
054            public long getUserTrackerPathId() {
055                    return _userTrackerPath.getUserTrackerPathId();
056            }
057    
058            /**
059            * Sets the user tracker path id of this user tracker path.
060            *
061            * @param userTrackerPathId the user tracker path id of this user tracker path
062            */
063            public void setUserTrackerPathId(long userTrackerPathId) {
064                    _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
065            }
066    
067            /**
068            * Gets the user tracker id of this user tracker path.
069            *
070            * @return the user tracker id of this user tracker path
071            */
072            public long getUserTrackerId() {
073                    return _userTrackerPath.getUserTrackerId();
074            }
075    
076            /**
077            * Sets the user tracker id of this user tracker path.
078            *
079            * @param userTrackerId the user tracker id of this user tracker path
080            */
081            public void setUserTrackerId(long userTrackerId) {
082                    _userTrackerPath.setUserTrackerId(userTrackerId);
083            }
084    
085            /**
086            * Gets the path of this user tracker path.
087            *
088            * @return the path of this user tracker path
089            */
090            public java.lang.String getPath() {
091                    return _userTrackerPath.getPath();
092            }
093    
094            /**
095            * Sets the path of this user tracker path.
096            *
097            * @param path the path of this user tracker path
098            */
099            public void setPath(java.lang.String path) {
100                    _userTrackerPath.setPath(path);
101            }
102    
103            /**
104            * Gets the path date of this user tracker path.
105            *
106            * @return the path date of this user tracker path
107            */
108            public java.util.Date getPathDate() {
109                    return _userTrackerPath.getPathDate();
110            }
111    
112            /**
113            * Sets the path date of this user tracker path.
114            *
115            * @param pathDate the path date of this user tracker path
116            */
117            public void setPathDate(java.util.Date pathDate) {
118                    _userTrackerPath.setPathDate(pathDate);
119            }
120    
121            public boolean isNew() {
122                    return _userTrackerPath.isNew();
123            }
124    
125            public void setNew(boolean n) {
126                    _userTrackerPath.setNew(n);
127            }
128    
129            public boolean isCachedModel() {
130                    return _userTrackerPath.isCachedModel();
131            }
132    
133            public void setCachedModel(boolean cachedModel) {
134                    _userTrackerPath.setCachedModel(cachedModel);
135            }
136    
137            public boolean isEscapedModel() {
138                    return _userTrackerPath.isEscapedModel();
139            }
140    
141            public void setEscapedModel(boolean escapedModel) {
142                    _userTrackerPath.setEscapedModel(escapedModel);
143            }
144    
145            public java.io.Serializable getPrimaryKeyObj() {
146                    return _userTrackerPath.getPrimaryKeyObj();
147            }
148    
149            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
150                    return _userTrackerPath.getExpandoBridge();
151            }
152    
153            public void setExpandoBridgeAttributes(
154                    com.liferay.portal.service.ServiceContext serviceContext) {
155                    _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
156            }
157    
158            public java.lang.Object clone() {
159                    return _userTrackerPath.clone();
160            }
161    
162            public int compareTo(
163                    com.liferay.portal.model.UserTrackerPath userTrackerPath) {
164                    return _userTrackerPath.compareTo(userTrackerPath);
165            }
166    
167            public int hashCode() {
168                    return _userTrackerPath.hashCode();
169            }
170    
171            public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
172                    return _userTrackerPath.toEscapedModel();
173            }
174    
175            public java.lang.String toString() {
176                    return _userTrackerPath.toString();
177            }
178    
179            public java.lang.String toXmlString() {
180                    return _userTrackerPath.toXmlString();
181            }
182    
183            public UserTrackerPath getWrappedUserTrackerPath() {
184                    return _userTrackerPath;
185            }
186    
187            private UserTrackerPath _userTrackerPath;
188    }