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