001
014
015 package com.liferay.portlet.flags.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class FlagsEntryServiceWrapper implements FlagsEntryService,
029 ServiceWrapper<FlagsEntryService> {
030 public FlagsEntryServiceWrapper(FlagsEntryService flagsEntryService) {
031 _flagsEntryService = flagsEntryService;
032 }
033
034
039 public java.lang.String getBeanIdentifier() {
040 return _flagsEntryService.getBeanIdentifier();
041 }
042
043
048 public void setBeanIdentifier(java.lang.String beanIdentifier) {
049 _flagsEntryService.setBeanIdentifier(beanIdentifier);
050 }
051
052 public void addEntry(java.lang.String className, long classPK,
053 java.lang.String reporterEmailAddress, long reportedUserId,
054 java.lang.String contentTitle, java.lang.String contentURL,
055 java.lang.String reason,
056 com.liferay.portal.service.ServiceContext serviceContext) {
057 _flagsEntryService.addEntry(className, classPK, reporterEmailAddress,
058 reportedUserId, contentTitle, contentURL, reason, serviceContext);
059 }
060
061
064 public FlagsEntryService getWrappedFlagsEntryService() {
065 return _flagsEntryService;
066 }
067
068
071 public void setWrappedFlagsEntryService(FlagsEntryService flagsEntryService) {
072 _flagsEntryService = flagsEntryService;
073 }
074
075 public FlagsEntryService getWrappedService() {
076 return _flagsEntryService;
077 }
078
079 public void setWrappedService(FlagsEntryService flagsEntryService) {
080 _flagsEntryService = flagsEntryService;
081 }
082
083 private FlagsEntryService _flagsEntryService;
084 }