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 @SuppressWarnings("unchecked")
64 public static java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return getService().dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("unchecked")
71 public static java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.kernel.exception.SystemException {
74 return getService().dynamicQuery(dynamicQuery, start, end);
75 }
76
77 @SuppressWarnings("unchecked")
78 public static java.util.List dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end,
81 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82 throws com.liferay.portal.kernel.exception.SystemException {
83 return getService()
84 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
85 }
86
87 public static long dynamicQueryCount(
88 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return getService().dynamicQueryCount(dynamicQuery);
91 }
92
93 public static com.liferay.portal.model.UserTrackerPath getUserTrackerPath(
94 long userTrackerPathId)
95 throws com.liferay.portal.kernel.exception.PortalException,
96 com.liferay.portal.kernel.exception.SystemException {
97 return getService().getUserTrackerPath(userTrackerPathId);
98 }
99
100 public static java.util.List<com.liferay.portal.model.UserTrackerPath> getUserTrackerPaths(
101 int start, int end)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return getService().getUserTrackerPaths(start, end);
104 }
105
106 public static int getUserTrackerPathsCount()
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return getService().getUserTrackerPathsCount();
109 }
110
111 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
112 com.liferay.portal.model.UserTrackerPath userTrackerPath)
113 throws com.liferay.portal.kernel.exception.SystemException {
114 return getService().updateUserTrackerPath(userTrackerPath);
115 }
116
117 public static com.liferay.portal.model.UserTrackerPath updateUserTrackerPath(
118 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
119 throws com.liferay.portal.kernel.exception.SystemException {
120 return getService().updateUserTrackerPath(userTrackerPath, merge);
121 }
122
123 public static 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 getService().getUserTrackerPaths(userTrackerId, start, end);
127 }
128
129 public static UserTrackerPathLocalService getService() {
130 if (_service == null) {
131 _service = (UserTrackerPathLocalService)PortalBeanLocatorUtil.locate(UserTrackerPathLocalService.class.getName());
132 }
133
134 return _service;
135 }
136
137 public void setService(UserTrackerPathLocalService service) {
138 _service = service;
139 }
140
141 private static UserTrackerPathLocalService _service;
142 }