001
014
015 package com.liferay.portlet.flags.service;
016
017
018
027 public class FlagsEntryServiceWrapper implements FlagsEntryService {
028 public FlagsEntryServiceWrapper(FlagsEntryService flagsEntryService) {
029 _flagsEntryService = flagsEntryService;
030 }
031
032 public void addEntry(java.lang.String className, long classPK,
033 java.lang.String reporterEmailAddress, long reportedUserId,
034 java.lang.String contentTitle, java.lang.String contentURL,
035 java.lang.String reason,
036 com.liferay.portal.service.ServiceContext serviceContext) {
037 _flagsEntryService.addEntry(className, classPK, reporterEmailAddress,
038 reportedUserId, contentTitle, contentURL, reason, serviceContext);
039 }
040
041 public FlagsEntryService getWrappedFlagsEntryService() {
042 return _flagsEntryService;
043 }
044
045 private FlagsEntryService _flagsEntryService;
046 }