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 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.kernel.exception.SystemException {
73 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
74 end);
75 }
76
77 public java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.kernel.exception.SystemException {
82 return _userTrackerPathLocalService.dynamicQuery(dynamicQuery, start,
83 end, orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.kernel.exception.SystemException {
89 return _userTrackerPathLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
93 long userTrackerPathId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _userTrackerPathLocalService.getUserTrackerPath(userTrackerPathId);
97 }
98
99 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _userTrackerPathLocalService.getUserTrackerPaths(start, end);
103 }
104
105 public int getUserTrackerPathsCount()
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _userTrackerPathLocalService.getUserTrackerPathsCount();
108 }
109
110 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
111 com.liferay.portal.model.UserTrackerPath userTrackerPath)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath);
114 }
115
116 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
117 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
118 throws com.liferay.portal.kernel.exception.SystemException {
119 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath,
120 merge);
121 }
122
123 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
124 long userTrackerId, int start, int end)
125 throws com.liferay.portal.kernel.exception.SystemException {
126 return _userTrackerPathLocalService.getUserTrackerPaths(userTrackerId,
127 start, end);
128 }
129
130 public UserTrackerPathLocalService getWrappedUserTrackerPathLocalService() {
131 return _userTrackerPathLocalService;
132 }
133
134 private UserTrackerPathLocalService _userTrackerPathLocalService;
135 }