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