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
036 public long getPrimaryKey() {
037 return _userTrackerPath.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _userTrackerPath.setPrimaryKey(pk);
047 }
048
049
054 public long getUserTrackerPathId() {
055 return _userTrackerPath.getUserTrackerPathId();
056 }
057
058
063 public void setUserTrackerPathId(long userTrackerPathId) {
064 _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
065 }
066
067
072 public long getUserTrackerId() {
073 return _userTrackerPath.getUserTrackerId();
074 }
075
076
081 public void setUserTrackerId(long userTrackerId) {
082 _userTrackerPath.setUserTrackerId(userTrackerId);
083 }
084
085
090 public java.lang.String getPath() {
091 return _userTrackerPath.getPath();
092 }
093
094
099 public void setPath(java.lang.String path) {
100 _userTrackerPath.setPath(path);
101 }
102
103
108 public java.util.Date getPathDate() {
109 return _userTrackerPath.getPathDate();
110 }
111
112
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 }