1
14
15 package com.liferay.portal.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class UserTrackerPathLocalServiceUtil {
40 public static com.liferay.portal.model.UserTrackerPath addUserTrackerPath(
41 com.liferay.portal.model.UserTrackerPath userTrackerPath)
42 throws com.liferay.portal.SystemException {
43 return getService().addUserTrackerPath(userTrackerPath);
44 }
45
46 public static com.liferay.portal.model.UserTrackerPath createUserTrackerPath(
47 long userTrackerPathId) {
48 return getService().createUserTrackerPath(userTrackerPathId);
49 }
50
51 public static void deleteUserTrackerPath(long userTrackerPathId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 getService().deleteUserTrackerPath(userTrackerPathId);
55 }
56
57 public static void deleteUserTrackerPath(
58 com.liferay.portal.model.UserTrackerPath userTrackerPath)
59 throws com.liferay.portal.SystemException {
60 getService().deleteUserTrackerPath(userTrackerPath);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return getService().dynamicQuery(dynamicQuery);
67 }
68
69 public static java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
76 long userTrackerPathId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return getService().getUserTrackerPath(userTrackerPathId);
80 }
81
82 public static java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return getService().getUserTrackerPaths(start, end);
85 }
86
87 public static int getUserTrackerPathsCount()
88 throws com.liferay.portal.SystemException {
89 return getService().getUserTrackerPathsCount();
90 }
91
92 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
93 com.liferay.portal.model.UserTrackerPath userTrackerPath)
94 throws com.liferay.portal.SystemException {
95 return getService().updateUserTrackerPath(userTrackerPath);
96 }
97
98 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
99 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
100 throws com.liferay.portal.SystemException {
101 return getService().updateUserTrackerPath(userTrackerPath, merge);
102 }
103
104 public static java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
105 long userTrackerId, int start, int end)
106 throws com.liferay.portal.SystemException {
107 return getService().getUserTrackerPaths(userTrackerId, start, end);
108 }
109
110 public static UserTrackerPathLocalService getService() {
111 if (_service == null) {
112 _service = (UserTrackerPathLocalService)PortalBeanLocatorUtil.locate(UserTrackerPathLocalService.class.getName());
113 }
114
115 return _service;
116 }
117
118 public void setService(UserTrackerPathLocalService service) {
119 _service = service;
120 }
121
122 private static UserTrackerPathLocalService _service;
123 }