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 Class<?> getModelClass() {
032                    return UserTrackerPath.class;
033            }
034    
035            public String getModelClassName() {
036                    return UserTrackerPath.class.getName();
037            }
038    
039            /**
040            * Returns 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            * Returns 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            * Returns 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            * Returns 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            * Returns 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 java.io.Serializable getPrimaryKeyObj() {
150                    return _userTrackerPath.getPrimaryKeyObj();
151            }
152    
153            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
154                    _userTrackerPath.setPrimaryKeyObj(primaryKeyObj);
155            }
156    
157            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
158                    return _userTrackerPath.getExpandoBridge();
159            }
160    
161            public void setExpandoBridgeAttributes(
162                    com.liferay.portal.service.ServiceContext serviceContext) {
163                    _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
164            }
165    
166            @Override
167            public java.lang.Object clone() {
168                    return new UserTrackerPathWrapper((UserTrackerPath)_userTrackerPath.clone());
169            }
170    
171            public int compareTo(
172                    com.liferay.portal.model.UserTrackerPath userTrackerPath) {
173                    return _userTrackerPath.compareTo(userTrackerPath);
174            }
175    
176            @Override
177            public int hashCode() {
178                    return _userTrackerPath.hashCode();
179            }
180    
181            public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserTrackerPath> toCacheModel() {
182                    return _userTrackerPath.toCacheModel();
183            }
184    
185            public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
186                    return new UserTrackerPathWrapper(_userTrackerPath.toEscapedModel());
187            }
188    
189            @Override
190            public java.lang.String toString() {
191                    return _userTrackerPath.toString();
192            }
193    
194            public java.lang.String toXmlString() {
195                    return _userTrackerPath.toXmlString();
196            }
197    
198            public void persist()
199                    throws com.liferay.portal.kernel.exception.SystemException {
200                    _userTrackerPath.persist();
201            }
202    
203            public UserTrackerPath getWrappedUserTrackerPath() {
204                    return _userTrackerPath;
205            }
206    
207            public void resetOriginalValues() {
208                    _userTrackerPath.resetOriginalValues();
209            }
210    
211            private UserTrackerPath _userTrackerPath;
212    }