001
014
015 package com.liferay.portlet.mobiledevicerules.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class MDRRuleGroupLocalServiceWrapper implements MDRRuleGroupLocalService,
029 ServiceWrapper<MDRRuleGroupLocalService> {
030 public MDRRuleGroupLocalServiceWrapper(
031 MDRRuleGroupLocalService mdrRuleGroupLocalService) {
032 _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
033 }
034
035
042 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup addMDRRuleGroup(
043 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _mdrRuleGroupLocalService.addMDRRuleGroup(mdrRuleGroup);
046 }
047
048
054 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup createMDRRuleGroup(
055 long ruleGroupId) {
056 return _mdrRuleGroupLocalService.createMDRRuleGroup(ruleGroupId);
057 }
058
059
067 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup deleteMDRRuleGroup(
068 long ruleGroupId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _mdrRuleGroupLocalService.deleteMDRRuleGroup(ruleGroupId);
072 }
073
074
081 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup deleteMDRRuleGroup(
082 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _mdrRuleGroupLocalService.deleteMDRRuleGroup(mdrRuleGroup);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _mdrRuleGroupLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _mdrRuleGroupLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _mdrRuleGroupLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _mdrRuleGroupLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _mdrRuleGroupLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchMDRRuleGroup(
163 long ruleGroupId)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _mdrRuleGroupLocalService.fetchMDRRuleGroup(ruleGroupId);
166 }
167
168
176 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getMDRRuleGroup(
177 long ruleGroupId)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _mdrRuleGroupLocalService.getMDRRuleGroup(ruleGroupId);
181 }
182
183 public com.liferay.portal.model.PersistedModel getPersistedModel(
184 java.io.Serializable primaryKeyObj)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _mdrRuleGroupLocalService.getPersistedModel(primaryKeyObj);
188 }
189
190
199 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getMDRRuleGroupByUuidAndGroupId(
200 java.lang.String uuid, long groupId)
201 throws com.liferay.portal.kernel.exception.PortalException,
202 com.liferay.portal.kernel.exception.SystemException {
203 return _mdrRuleGroupLocalService.getMDRRuleGroupByUuidAndGroupId(uuid,
204 groupId);
205 }
206
207
219 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getMDRRuleGroups(
220 int start, int end)
221 throws com.liferay.portal.kernel.exception.SystemException {
222 return _mdrRuleGroupLocalService.getMDRRuleGroups(start, end);
223 }
224
225
231 public int getMDRRuleGroupsCount()
232 throws com.liferay.portal.kernel.exception.SystemException {
233 return _mdrRuleGroupLocalService.getMDRRuleGroupsCount();
234 }
235
236
243 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup updateMDRRuleGroup(
244 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
245 throws com.liferay.portal.kernel.exception.SystemException {
246 return _mdrRuleGroupLocalService.updateMDRRuleGroup(mdrRuleGroup);
247 }
248
249
254 public java.lang.String getBeanIdentifier() {
255 return _mdrRuleGroupLocalService.getBeanIdentifier();
256 }
257
258
263 public void setBeanIdentifier(java.lang.String beanIdentifier) {
264 _mdrRuleGroupLocalService.setBeanIdentifier(beanIdentifier);
265 }
266
267 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup addRuleGroup(
268 long groupId,
269 java.util.Map<java.util.Locale, java.lang.String> nameMap,
270 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
271 com.liferay.portal.service.ServiceContext serviceContext)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 return _mdrRuleGroupLocalService.addRuleGroup(groupId, nameMap,
275 descriptionMap, serviceContext);
276 }
277
278 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup copyRuleGroup(
279 long ruleGroupId, long groupId,
280 com.liferay.portal.service.ServiceContext serviceContext)
281 throws com.liferay.portal.kernel.exception.PortalException,
282 com.liferay.portal.kernel.exception.SystemException {
283 return _mdrRuleGroupLocalService.copyRuleGroup(ruleGroupId, groupId,
284 serviceContext);
285 }
286
287 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup copyRuleGroup(
288 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup ruleGroup,
289 long groupId, com.liferay.portal.service.ServiceContext serviceContext)
290 throws com.liferay.portal.kernel.exception.PortalException,
291 com.liferay.portal.kernel.exception.SystemException {
292 return _mdrRuleGroupLocalService.copyRuleGroup(ruleGroup, groupId,
293 serviceContext);
294 }
295
296 public void deleteRuleGroup(long ruleGroupId)
297 throws com.liferay.portal.kernel.exception.SystemException {
298 _mdrRuleGroupLocalService.deleteRuleGroup(ruleGroupId);
299 }
300
301 public void deleteRuleGroup(
302 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup ruleGroup)
303 throws com.liferay.portal.kernel.exception.SystemException {
304 _mdrRuleGroupLocalService.deleteRuleGroup(ruleGroup);
305 }
306
307 public void deleteRuleGroups(long groupId)
308 throws com.liferay.portal.kernel.exception.SystemException {
309 _mdrRuleGroupLocalService.deleteRuleGroups(groupId);
310 }
311
312 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchRuleGroup(
313 long ruleGroupId)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 return _mdrRuleGroupLocalService.fetchRuleGroup(ruleGroupId);
316 }
317
318 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getRuleGroup(
319 long ruleGroupId)
320 throws com.liferay.portal.kernel.exception.PortalException,
321 com.liferay.portal.kernel.exception.SystemException {
322 return _mdrRuleGroupLocalService.getRuleGroup(ruleGroupId);
323 }
324
325 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getRuleGroups(
326 long groupId)
327 throws com.liferay.portal.kernel.exception.SystemException {
328 return _mdrRuleGroupLocalService.getRuleGroups(groupId);
329 }
330
331 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getRuleGroups(
332 long groupId, int start, int end)
333 throws com.liferay.portal.kernel.exception.SystemException {
334 return _mdrRuleGroupLocalService.getRuleGroups(groupId, start, end);
335 }
336
337 public int getRuleGroupsCount(long groupId)
338 throws com.liferay.portal.kernel.exception.SystemException {
339 return _mdrRuleGroupLocalService.getRuleGroupsCount(groupId);
340 }
341
342 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> search(
343 long groupId, java.lang.String name, boolean andOperator, int start,
344 int end) throws com.liferay.portal.kernel.exception.SystemException {
345 return _mdrRuleGroupLocalService.search(groupId, name, andOperator,
346 start, end);
347 }
348
349 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> searchByKeywords(
350 long groupId, java.lang.String keywords, boolean andOperator,
351 int start, int end)
352 throws com.liferay.portal.kernel.exception.SystemException {
353 return _mdrRuleGroupLocalService.searchByKeywords(groupId, keywords,
354 andOperator, start, end);
355 }
356
357 public int searchByKeywordsCount(long groupId, java.lang.String keywords,
358 boolean andOperator)
359 throws com.liferay.portal.kernel.exception.SystemException {
360 return _mdrRuleGroupLocalService.searchByKeywordsCount(groupId,
361 keywords, andOperator);
362 }
363
364 public int searchCount(long groupId, java.lang.String name,
365 boolean andOperator)
366 throws com.liferay.portal.kernel.exception.SystemException {
367 return _mdrRuleGroupLocalService.searchCount(groupId, name, andOperator);
368 }
369
370 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup updateRuleGroup(
371 long ruleGroupId,
372 java.util.Map<java.util.Locale, java.lang.String> nameMap,
373 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
374 com.liferay.portal.service.ServiceContext serviceContext)
375 throws com.liferay.portal.kernel.exception.PortalException,
376 com.liferay.portal.kernel.exception.SystemException {
377 return _mdrRuleGroupLocalService.updateRuleGroup(ruleGroupId, nameMap,
378 descriptionMap, serviceContext);
379 }
380
381
384 public MDRRuleGroupLocalService getWrappedMDRRuleGroupLocalService() {
385 return _mdrRuleGroupLocalService;
386 }
387
388
391 public void setWrappedMDRRuleGroupLocalService(
392 MDRRuleGroupLocalService mdrRuleGroupLocalService) {
393 _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
394 }
395
396 public MDRRuleGroupLocalService getWrappedService() {
397 return _mdrRuleGroupLocalService;
398 }
399
400 public void setWrappedService(
401 MDRRuleGroupLocalService mdrRuleGroupLocalService) {
402 _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
403 }
404
405 private MDRRuleGroupLocalService _mdrRuleGroupLocalService;
406 }