001
014
015 package com.liferay.portal.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
026 @ProviderType
027 public class ContactServiceWrapper implements ContactService,
028 ServiceWrapper<ContactService> {
029 public ContactServiceWrapper(ContactService contactService) {
030 _contactService = contactService;
031 }
032
033
038 @Override
039 public java.lang.String getBeanIdentifier() {
040 return _contactService.getBeanIdentifier();
041 }
042
043 @Override
044 public com.liferay.portal.model.Contact getContact(long contactId)
045 throws com.liferay.portal.kernel.exception.PortalException {
046 return _contactService.getContact(contactId);
047 }
048
049 @Override
050 public java.util.List<com.liferay.portal.model.Contact> getContacts(
051 long classNameId, long classPK, int start, int end,
052 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.Contact> orderByComparator)
053 throws com.liferay.portal.kernel.exception.PortalException {
054 return _contactService.getContacts(classNameId, classPK, start, end,
055 orderByComparator);
056 }
057
058 @Override
059 public int getContactsCount(long classNameId, long classPK)
060 throws com.liferay.portal.kernel.exception.PortalException {
061 return _contactService.getContactsCount(classNameId, classPK);
062 }
063
064
069 @Override
070 public void setBeanIdentifier(java.lang.String beanIdentifier) {
071 _contactService.setBeanIdentifier(beanIdentifier);
072 }
073
074
077 @Deprecated
078 public ContactService getWrappedContactService() {
079 return _contactService;
080 }
081
082
085 @Deprecated
086 public void setWrappedContactService(ContactService contactService) {
087 _contactService = contactService;
088 }
089
090 @Override
091 public ContactService getWrappedService() {
092 return _contactService;
093 }
094
095 @Override
096 public void setWrappedService(ContactService contactService) {
097 _contactService = contactService;
098 }
099
100 private ContactService _contactService;
101 }