1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.model;
16  
17  /**
18   * <a href="UserTrackerPathSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link UserTrackerPath}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       UserTrackerPath
31   * @generated
32   */
33  public class UserTrackerPathWrapper implements UserTrackerPath {
34      public UserTrackerPathWrapper(UserTrackerPath userTrackerPath) {
35          _userTrackerPath = userTrackerPath;
36      }
37  
38      public long getPrimaryKey() {
39          return _userTrackerPath.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _userTrackerPath.setPrimaryKey(pk);
44      }
45  
46      public long getUserTrackerPathId() {
47          return _userTrackerPath.getUserTrackerPathId();
48      }
49  
50      public void setUserTrackerPathId(long userTrackerPathId) {
51          _userTrackerPath.setUserTrackerPathId(userTrackerPathId);
52      }
53  
54      public long getUserTrackerId() {
55          return _userTrackerPath.getUserTrackerId();
56      }
57  
58      public void setUserTrackerId(long userTrackerId) {
59          _userTrackerPath.setUserTrackerId(userTrackerId);
60      }
61  
62      public java.lang.String getPath() {
63          return _userTrackerPath.getPath();
64      }
65  
66      public void setPath(java.lang.String path) {
67          _userTrackerPath.setPath(path);
68      }
69  
70      public java.util.Date getPathDate() {
71          return _userTrackerPath.getPathDate();
72      }
73  
74      public void setPathDate(java.util.Date pathDate) {
75          _userTrackerPath.setPathDate(pathDate);
76      }
77  
78      public boolean isNew() {
79          return _userTrackerPath.isNew();
80      }
81  
82      public boolean setNew(boolean n) {
83          return _userTrackerPath.setNew(n);
84      }
85  
86      public boolean isCachedModel() {
87          return _userTrackerPath.isCachedModel();
88      }
89  
90      public void setCachedModel(boolean cachedModel) {
91          _userTrackerPath.setCachedModel(cachedModel);
92      }
93  
94      public boolean isEscapedModel() {
95          return _userTrackerPath.isEscapedModel();
96      }
97  
98      public void setEscapedModel(boolean escapedModel) {
99          _userTrackerPath.setEscapedModel(escapedModel);
100     }
101 
102     public java.io.Serializable getPrimaryKeyObj() {
103         return _userTrackerPath.getPrimaryKeyObj();
104     }
105 
106     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
107         return _userTrackerPath.getExpandoBridge();
108     }
109 
110     public void setExpandoBridgeAttributes(
111         com.liferay.portal.service.ServiceContext serviceContext) {
112         _userTrackerPath.setExpandoBridgeAttributes(serviceContext);
113     }
114 
115     public java.lang.Object clone() {
116         return _userTrackerPath.clone();
117     }
118 
119     public int compareTo(
120         com.liferay.portal.model.UserTrackerPath userTrackerPath) {
121         return _userTrackerPath.compareTo(userTrackerPath);
122     }
123 
124     public int hashCode() {
125         return _userTrackerPath.hashCode();
126     }
127 
128     public com.liferay.portal.model.UserTrackerPath toEscapedModel() {
129         return _userTrackerPath.toEscapedModel();
130     }
131 
132     public java.lang.String toString() {
133         return _userTrackerPath.toString();
134     }
135 
136     public java.lang.String toXmlString() {
137         return _userTrackerPath.toXmlString();
138     }
139 
140     public UserTrackerPath getWrappedUserTrackerPath() {
141         return _userTrackerPath;
142     }
143 
144     private UserTrackerPath _userTrackerPath;
145 }