1
14
15 package com.liferay.portlet.ratings.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18 import com.liferay.portal.kernel.util.MethodCache;
19 import com.liferay.portal.kernel.util.ReferenceRegistry;
20
21
41 public class RatingsEntryLocalServiceUtil {
42 public static com.liferay.portlet.ratings.model.RatingsEntry addRatingsEntry(
43 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
44 throws com.liferay.portal.SystemException {
45 return getService().addRatingsEntry(ratingsEntry);
46 }
47
48 public static com.liferay.portlet.ratings.model.RatingsEntry createRatingsEntry(
49 long entryId) {
50 return getService().createRatingsEntry(entryId);
51 }
52
53 public static void deleteRatingsEntry(long entryId)
54 throws com.liferay.portal.PortalException,
55 com.liferay.portal.SystemException {
56 getService().deleteRatingsEntry(entryId);
57 }
58
59 public static void deleteRatingsEntry(
60 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
61 throws com.liferay.portal.SystemException {
62 getService().deleteRatingsEntry(ratingsEntry);
63 }
64
65 @SuppressWarnings("rawtypes")
66 public static java.util.List dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException {
69 return getService().dynamicQuery(dynamicQuery);
70 }
71
72 @SuppressWarnings("rawtypes")
73 public static java.util.List dynamicQuery(
74 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
75 int end) throws com.liferay.portal.SystemException {
76 return getService().dynamicQuery(dynamicQuery, start, end);
77 }
78
79 @SuppressWarnings("rawtypes")
80 public static java.util.List dynamicQuery(
81 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
82 int end,
83 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84 throws com.liferay.portal.SystemException {
85 return getService()
86 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
87 }
88
89 public static int dynamicQueryCount(
90 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
91 throws com.liferay.portal.SystemException {
92 return getService().dynamicQueryCount(dynamicQuery);
93 }
94
95 public static com.liferay.portlet.ratings.model.RatingsEntry getRatingsEntry(
96 long entryId)
97 throws com.liferay.portal.PortalException,
98 com.liferay.portal.SystemException {
99 return getService().getRatingsEntry(entryId);
100 }
101
102 public static java.util.List<com.liferay.portlet.ratings.model.RatingsEntry> getRatingsEntries(
103 int start, int end) throws com.liferay.portal.SystemException {
104 return getService().getRatingsEntries(start, end);
105 }
106
107 public static int getRatingsEntriesCount()
108 throws com.liferay.portal.SystemException {
109 return getService().getRatingsEntriesCount();
110 }
111
112 public static com.liferay.portlet.ratings.model.RatingsEntry updateRatingsEntry(
113 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
114 throws com.liferay.portal.SystemException {
115 return getService().updateRatingsEntry(ratingsEntry);
116 }
117
118 public static com.liferay.portlet.ratings.model.RatingsEntry updateRatingsEntry(
119 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry,
120 boolean merge) throws com.liferay.portal.SystemException {
121 return getService().updateRatingsEntry(ratingsEntry, merge);
122 }
123
124 public static void deleteEntry(long userId, java.lang.String className,
125 long classPK)
126 throws com.liferay.portal.PortalException,
127 com.liferay.portal.SystemException {
128 getService().deleteEntry(userId, className, classPK);
129 }
130
131 public static java.util.List<com.liferay.portlet.ratings.model.RatingsEntry> getEntries(
132 java.lang.String className, long classPK)
133 throws com.liferay.portal.SystemException {
134 return getService().getEntries(className, classPK);
135 }
136
137 public static com.liferay.portlet.ratings.model.RatingsEntry getEntry(
138 long userId, java.lang.String className, long classPK)
139 throws com.liferay.portal.PortalException,
140 com.liferay.portal.SystemException {
141 return getService().getEntry(userId, className, classPK);
142 }
143
144
147 public static com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
148 long userId, java.lang.String className, long classPK, double score)
149 throws com.liferay.portal.PortalException,
150 com.liferay.portal.SystemException {
151 return getService().updateEntry(userId, className, classPK, score);
152 }
153
154 public static com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
155 long userId, java.lang.String className, long classPK, double score,
156 com.liferay.portal.service.ServiceContext serviceContext)
157 throws com.liferay.portal.PortalException,
158 com.liferay.portal.SystemException {
159 return getService()
160 .updateEntry(userId, className, classPK, score,
161 serviceContext);
162 }
163
164 public static RatingsEntryLocalService getService() {
165 if (_service == null) {
166 _service = (RatingsEntryLocalService)PortalBeanLocatorUtil.locate(RatingsEntryLocalService.class.getName());
167
168 ReferenceRegistry.registerReference(RatingsEntryLocalServiceUtil.class,
169 "_service");
170 MethodCache.remove(RatingsEntryLocalService.class);
171 }
172
173 return _service;
174 }
175
176 public void setService(RatingsEntryLocalService service) {
177 MethodCache.remove(RatingsEntryLocalService.class);
178
179 _service = service;
180
181 ReferenceRegistry.registerReference(RatingsEntryLocalServiceUtil.class,
182 "_service");
183 MethodCache.remove(RatingsEntryLocalService.class);
184 }
185
186 private static RatingsEntryLocalService _service;
187 }