001
014
015 package com.liferay.portal.model;
016
017
026 public class UserTrackerPathWrapper implements UserTrackerPath,
027 ModelWrapper<UserTrackerPath> {
028 public UserTrackerPathWrapper(UserTrackerPath userTrackerPath) {
029 _userTrackerPath = userTrackerPath;
030 }
031
032 public Class<?> getModelClass() {
033 return UserTrackerPath.class;
034 }
035
036 public String getModelClassName() {
037 return UserTrackerPath.class.getName();
038 }
039
040
045 public long getPrimaryKey() {
046 return _userTrackerPath.getPrimaryKey();
047 }
048
049
054 public void setPrimaryKey(long primaryKey) {
055 _userTrackerPath.setPrimaryKey(primaryKey);
056 }
057
058
063 public long getUserTrackerPathId() {
064 return _userTrackerPath.getUserTrackerPathId();
065 }
066
067
072 public void setUserTrackerPathId(long userTrackerPathId) {
073 _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
074 }
075
076
081 public long getUserTrackerId() {
082 return _userTrackerPath.getUserTrackerId();
083 }
084
085
090 public void setUserTrackerId(long userTrackerId) {
091 _userTrackerPath.setUserTrackerId(userTrackerId);
092 }
093
094
099 public java.lang.String getPath() {
100 return _userTrackerPath.getPath();
101 }
102
103
108 public void setPath(java.lang.String path) {
109 _userTrackerPath.setPath(path);
110 }
111
112
117 public java.util.Date getPathDate() {
118 return _userTrackerPath.getPathDate();
119 }
120
121
126 public void setPathDate(java.util.Date pathDate) {
127 _userTrackerPath.setPathDate(pathDate);
128 }
129
130 public boolean isNew() {
131 return _userTrackerPath.isNew();
132 }
133
134 public void setNew(boolean n) {
135 _userTrackerPath.setNew(n);
136 }
137
138 public boolean isCachedModel() {
139 return _userTrackerPath.isCachedModel();
140 }
141
142 public void setCachedModel(boolean cachedModel) {
143 _userTrackerPath.setCachedModel(cachedModel);
144 }
145
146 public boolean isEscapedModel() {
147 return _userTrackerPath.isEscapedModel();
148 }
149
150 public java.io.Serializable getPrimaryKeyObj() {
151 return _userTrackerPath.getPrimaryKeyObj();
152 }
153
154 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
155 _userTrackerPath.setPrimaryKeyObj(primaryKeyObj);
156 }
157
158 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
159 return _userTrackerPath.getExpandoBridge();
160 }
161
162 public void setExpandoBridgeAttributes(
163 com.liferay.portal.service.ServiceContext serviceContext) {
164 _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
165 }
166
167 @Override
168 public java.lang.Object clone() {
169 return new UserTrackerPathWrapper((UserTrackerPath)_userTrackerPath.clone());
170 }
171
172 public int compareTo(
173 com.liferay.portal.model.UserTrackerPath userTrackerPath) {
174 return _userTrackerPath.compareTo(userTrackerPath);
175 }
176
177 @Override
178 public int hashCode() {
179 return _userTrackerPath.hashCode();
180 }
181
182 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserTrackerPath> toCacheModel() {
183 return _userTrackerPath.toCacheModel();
184 }
185
186 public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
187 return new UserTrackerPathWrapper(_userTrackerPath.toEscapedModel());
188 }
189
190 @Override
191 public java.lang.String toString() {
192 return _userTrackerPath.toString();
193 }
194
195 public java.lang.String toXmlString() {
196 return _userTrackerPath.toXmlString();
197 }
198
199 public void persist()
200 throws com.liferay.portal.kernel.exception.SystemException {
201 _userTrackerPath.persist();
202 }
203
204
207 public UserTrackerPath getWrappedUserTrackerPath() {
208 return _userTrackerPath;
209 }
210
211 public UserTrackerPath getWrappedModel() {
212 return _userTrackerPath;
213 }
214
215 public void resetOriginalValues() {
216 _userTrackerPath.resetOriginalValues();
217 }
218
219 private UserTrackerPath _userTrackerPath;
220 }