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