1
22
23 package com.liferay.portal.service;
24
25
26
53 public class UserTrackerPathLocalServiceUtil {
54 public static com.liferay.portal.model.UserTrackerPath addUserTrackerPath(
55 com.liferay.portal.model.UserTrackerPath userTrackerPath)
56 throws com.liferay.portal.SystemException {
57 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
58
59 return userTrackerPathLocalService.addUserTrackerPath(userTrackerPath);
60 }
61
62 public static void deleteUserTrackerPath(long userTrackerPathId)
63 throws com.liferay.portal.PortalException,
64 com.liferay.portal.SystemException {
65 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
66
67 userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPathId);
68 }
69
70 public static void deleteUserTrackerPath(
71 com.liferay.portal.model.UserTrackerPath userTrackerPath)
72 throws com.liferay.portal.PortalException,
73 com.liferay.portal.SystemException {
74 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
75
76 userTrackerPathLocalService.deleteUserTrackerPath(userTrackerPath);
77 }
78
79 public static java.util.List<com.liferay.portal.model.UserTrackerPath> dynamicQuery(
80 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
81 throws com.liferay.portal.SystemException {
82 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
83
84 return userTrackerPathLocalService.dynamicQuery(queryInitializer);
85 }
86
87 public static java.util.List<com.liferay.portal.model.UserTrackerPath> dynamicQuery(
88 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
89 int begin, int end) throws com.liferay.portal.SystemException {
90 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
91
92 return userTrackerPathLocalService.dynamicQuery(queryInitializer,
93 begin, end);
94 }
95
96 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
97 com.liferay.portal.model.UserTrackerPath userTrackerPath)
98 throws com.liferay.portal.SystemException {
99 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
100
101 return userTrackerPathLocalService.updateUserTrackerPath(userTrackerPath);
102 }
103
104 public static java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
105 long userTrackerId, int begin, int end)
106 throws com.liferay.portal.SystemException {
107 UserTrackerPathLocalService userTrackerPathLocalService = UserTrackerPathLocalServiceFactory.getService();
108
109 return userTrackerPathLocalService.getUserTrackerPaths(userTrackerId,
110 begin, end);
111 }
112 }