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.kernel.exception.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.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 getService().deleteUserTrackerPath(userTrackerPathId);
55 }
56
57 public static void deleteUserTrackerPath(
58 com.liferay.portal.model.UserTrackerPath userTrackerPath)
59 throws com.liferay.portal.kernel.exception.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.kernel.exception.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.kernel.exception.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.kernel.exception.PortalException,
78 com.liferay.portal.kernel.exception.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)
84 throws com.liferay.portal.kernel.exception.SystemException {
85 return getService().getUserTrackerPaths(start, end);
86 }
87
88 public static int getUserTrackerPathsCount()
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return getService().getUserTrackerPathsCount();
91 }
92
93 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
94 com.liferay.portal.model.UserTrackerPath userTrackerPath)
95 throws com.liferay.portal.kernel.exception.SystemException {
96 return getService().updateUserTrackerPath(userTrackerPath);
97 }
98
99 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
100 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return getService().updateUserTrackerPath(userTrackerPath, merge);
103 }
104
105 public static java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
106 long userTrackerId, int start, int end)
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return getService().getUserTrackerPaths(userTrackerId, start, end);
109 }
110
111 public static UserTrackerPathLocalService getService() {
112 if (_service == null) {
113 _service = (UserTrackerPathLocalService)PortalBeanLocatorUtil.locate(UserTrackerPathLocalService.class.getName());
114 }
115
116 return _service;
117 }
118
119 public void setService(UserTrackerPathLocalService service) {
120 _service = service;
121 }
122
123 private static UserTrackerPathLocalService _service;
124 }