001
014
015 package com.liferay.portal.service;
016
017
026 public class UserTrackerPathLocalServiceWrapper
027 implements UserTrackerPathLocalService {
028 public UserTrackerPathLocalServiceWrapper(
029 UserTrackerPathLocalService userTrackerPathLocalService) {
030 _userTrackerPathLocalService = userTrackerPathLocalService;
031 }
032
033 public com.liferay.portal.model.UserTrackerPath addUserTrackerPath(
034 com.liferay.portal.model.UserTrackerPath userTrackerPath)
035 throws com.liferay.portal.kernel.exception.SystemException {
036 return _userTrackerPathLocalService.addUserTrackerPath(userTrackerPath);
037 }
038
039 public com.liferay.portal.model.UserTrackerPath createUserTrackerPath(
040 long userTrackerPathId) {
041 return _userTrackerPathLocalService.createUserTrackerPath(userTrackerPathId);
042 }
043
044 public void deleteUserTrackerPath(long userTrackerPathId)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException {
047 _userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPathId);
048 }
049
050 public void deleteUserTrackerPath(
051 com.liferay.portal.model.UserTrackerPath userTrackerPath)
052 throws com.liferay.portal.kernel.exception.SystemException {
053 _userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPath);
054 }
055
056 @SuppressWarnings("unchecked")
057 public java.util.List dynamicQuery(
058 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
059 throws com.liferay.portal.kernel.exception.SystemException {
060 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery);
061 }
062
063 @SuppressWarnings("unchecked")
064 public java.util.List dynamicQuery(
065 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066 int end) throws com.liferay.portal.kernel.exception.SystemException {
067 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
068 end);
069 }
070
071 @SuppressWarnings("unchecked")
072 public java.util.List dynamicQuery(
073 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
074 int end,
075 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
076 throws com.liferay.portal.kernel.exception.SystemException {
077 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
078 end, orderByComparator);
079 }
080
081 public long dynamicQueryCount(
082 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _userTrackerPathLocalService.dynamicQueryCount(dynamicQuery);
085 }
086
087 public com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
088 long userTrackerPathId)
089 throws com.liferay.portal.kernel.exception.PortalException,
090 com.liferay.portal.kernel.exception.SystemException {
091 return _userTrackerPathLocalService.getUserTrackerPath(userTrackerPathId);
092 }
093
094 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
095 int start, int end)
096 throws com.liferay.portal.kernel.exception.SystemException {
097 return _userTrackerPathLocalService.getUserTrackerPaths(start, end);
098 }
099
100 public int getUserTrackerPathsCount()
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _userTrackerPathLocalService.getUserTrackerPathsCount();
103 }
104
105 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
106 com.liferay.portal.model.UserTrackerPath userTrackerPath)
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath);
109 }
110
111 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
112 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
113 throws com.liferay.portal.kernel.exception.SystemException {
114 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath,
115 merge);
116 }
117
118 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
119 long userTrackerId, int start, int end)
120 throws com.liferay.portal.kernel.exception.SystemException {
121 return _userTrackerPathLocalService.getUserTrackerPaths(userTrackerId,
122 start, end);
123 }
124
125 public UserTrackerPathLocalService getWrappedUserTrackerPathLocalService() {
126 return _userTrackerPathLocalService;
127 }
128
129 private UserTrackerPathLocalService _userTrackerPathLocalService;
130 }