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 long getPrimaryKey() {
032 return _userTrackerPath.getPrimaryKey();
033 }
034
035 public void setPrimaryKey(long pk) {
036 _userTrackerPath.setPrimaryKey(pk);
037 }
038
039 public long getUserTrackerPathId() {
040 return _userTrackerPath.getUserTrackerPathId();
041 }
042
043 public void setUserTrackerPathId(long userTrackerPathId) {
044 _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
045 }
046
047 public long getUserTrackerId() {
048 return _userTrackerPath.getUserTrackerId();
049 }
050
051 public void setUserTrackerId(long userTrackerId) {
052 _userTrackerPath.setUserTrackerId(userTrackerId);
053 }
054
055 public java.lang.String getPath() {
056 return _userTrackerPath.getPath();
057 }
058
059 public void setPath(java.lang.String path) {
060 _userTrackerPath.setPath(path);
061 }
062
063 public java.util.Date getPathDate() {
064 return _userTrackerPath.getPathDate();
065 }
066
067 public void setPathDate(java.util.Date pathDate) {
068 _userTrackerPath.setPathDate(pathDate);
069 }
070
071 public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
072 return _userTrackerPath.toEscapedModel();
073 }
074
075 public boolean isNew() {
076 return _userTrackerPath.isNew();
077 }
078
079 public void setNew(boolean n) {
080 _userTrackerPath.setNew(n);
081 }
082
083 public boolean isCachedModel() {
084 return _userTrackerPath.isCachedModel();
085 }
086
087 public void setCachedModel(boolean cachedModel) {
088 _userTrackerPath.setCachedModel(cachedModel);
089 }
090
091 public boolean isEscapedModel() {
092 return _userTrackerPath.isEscapedModel();
093 }
094
095 public void setEscapedModel(boolean escapedModel) {
096 _userTrackerPath.setEscapedModel(escapedModel);
097 }
098
099 public java.io.Serializable getPrimaryKeyObj() {
100 return _userTrackerPath.getPrimaryKeyObj();
101 }
102
103 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
104 return _userTrackerPath.getExpandoBridge();
105 }
106
107 public void setExpandoBridgeAttributes(
108 com.liferay.portal.service.ServiceContext serviceContext) {
109 _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
110 }
111
112 public java.lang.Object clone() {
113 return _userTrackerPath.clone();
114 }
115
116 public int compareTo(
117 com.liferay.portal.model.UserTrackerPath userTrackerPath) {
118 return _userTrackerPath.compareTo(userTrackerPath);
119 }
120
121 public int hashCode() {
122 return _userTrackerPath.hashCode();
123 }
124
125 public java.lang.String toString() {
126 return _userTrackerPath.toString();
127 }
128
129 public java.lang.String toXmlString() {
130 return _userTrackerPath.toXmlString();
131 }
132
133 public UserTrackerPath getWrappedUserTrackerPath() {
134 return _userTrackerPath;
135 }
136
137 private UserTrackerPath _userTrackerPath;
138 }