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 com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
78 long userTrackerPathId)
79 throws com.liferay.portal.kernel.exception.PortalException,
80 com.liferay.portal.kernel.exception.SystemException {
81 return _userTrackerPathLocalService.getUserTrackerPath(userTrackerPathId);
82 }
83
84 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
85 int start, int end)
86 throws com.liferay.portal.kernel.exception.SystemException {
87 return _userTrackerPathLocalService.getUserTrackerPaths(start, end);
88 }
89
90 public int getUserTrackerPathsCount()
91 throws com.liferay.portal.kernel.exception.SystemException {
92 return _userTrackerPathLocalService.getUserTrackerPathsCount();
93 }
94
95 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
96 com.liferay.portal.model.UserTrackerPath userTrackerPath)
97 throws com.liferay.portal.kernel.exception.SystemException {
98 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath);
99 }
100
101 public com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
102 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
103 throws com.liferay.portal.kernel.exception.SystemException {
104 return _userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath,
105 merge);
106 }
107
108 public java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
109 long userTrackerId, int start, int end)
110 throws com.liferay.portal.kernel.exception.SystemException {
111 return _userTrackerPathLocalService.getUserTrackerPaths(userTrackerId,
112 start, end);
113 }
114
115 public UserTrackerPathLocalService getWrappedUserTrackerPathLocalService() {
116 return _userTrackerPathLocalService;
117 }
118
119 private UserTrackerPathLocalService _userTrackerPathLocalService;
120 }