1
14
15 package com.liferay.portal.service;
16
17
33 public class UserTrackerPathLocalServiceWrapper
34 implements UserTrackerPathLocalService {
35 public UserTrackerPathLocalServiceWrapper(
36 UserTrackerPathLocalService userTrackerPathLocalService) {
37 _userTrackerPathLocalService = userTrackerPathLocalService;
38 }
39
40 public com.liferay.portal.model.UserTrackerPath addUserTrackerPath(
41 com.liferay.portal.model.UserTrackerPath userTrackerPath)
42 throws com.liferay.portal.SystemException {
43 return _userTrackerPathLocalService.addUserTrackerPath(userTrackerPath);
44 }
45
46 public com.liferay.portal.model.UserTrackerPath createUserTrackerPath(
47 long userTrackerPathId) {
48 return _userTrackerPathLocalService.createUserTrackerPath(userTrackerPathId);
49 }
50
51 public void deleteUserTrackerPath(long userTrackerPathId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPathId);
55 }
56
57 public void deleteUserTrackerPath(
58 com.liferay.portal.model.UserTrackerPath userTrackerPath)
59 throws com.liferay.portal.SystemException {
60 _userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPath);
61 }
62
63 @SuppressWarnings("rawtypes")
64 public java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.SystemException {
67 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("rawtypes")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.SystemException {
74 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
75 end);
76 }
77
78 @SuppressWarnings("rawtypes")
79 public java.util.List dynamicQuery(
80 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
81 int end,
82 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
83 throws com.liferay.portal.SystemException {
84 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
85 end, orderByComparator);
86 }
87
88 public int dynamicQueryCount(
89 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
90 throws com.liferay.portal.SystemException {
91 return _userTrackerPathLocalService.dynamicQueryCount(dynamicQuery);
92 }
93
94 public com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
95 long userTrackerPathId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException {
98 return _userTrackerPathLocalService.getUserTrackerPath(userTrackerPathId);
99 }
100
101 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
102 int start, int end) throws com.liferay.portal.SystemException {
103 return _userTrackerPathLocalService.getUserTrackerPaths(start, end);
104 }
105
106 public int getUserTrackerPathsCount()
107 throws com.liferay.portal.SystemException {
108 return _userTrackerPathLocalService.getUserTrackerPathsCount();
109 }
110
111 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
112 com.liferay.portal.model.UserTrackerPath userTrackerPath)
113 throws com.liferay.portal.SystemException {
114 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath);
115 }
116
117 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
118 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
119 throws com.liferay.portal.SystemException {
120 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath,
121 merge);
122 }
123
124 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
125 long userTrackerId, int start, int end)
126 throws com.liferay.portal.SystemException {
127 return _userTrackerPathLocalService.getUserTrackerPaths(userTrackerId,
128 start, end);
129 }
130
131 public UserTrackerPathLocalService getWrappedUserTrackerPathLocalService() {
132 return _userTrackerPathLocalService;
133 }
134
135 private UserTrackerPathLocalService _userTrackerPathLocalService;
136 }