001
014
015 package com.liferay.portal.model;
016
017
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
044 public long getPrimaryKey() {
045 return _userTrackerPath.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _userTrackerPath.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getUserTrackerPathId() {
063 return _userTrackerPath.getUserTrackerPathId();
064 }
065
066
071 public void setUserTrackerPathId(long userTrackerPathId) {
072 _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
073 }
074
075
080 public long getUserTrackerId() {
081 return _userTrackerPath.getUserTrackerId();
082 }
083
084
089 public void setUserTrackerId(long userTrackerId) {
090 _userTrackerPath.setUserTrackerId(userTrackerId);
091 }
092
093
098 public java.lang.String getPath() {
099 return _userTrackerPath.getPath();
100 }
101
102
107 public void setPath(java.lang.String path) {
108 _userTrackerPath.setPath(path);
109 }
110
111
116 public java.util.Date getPathDate() {
117 return _userTrackerPath.getPathDate();
118 }
119
120
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 }