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