001
014
015 package com.liferay.portal.service;
016
017
026 public class ContactServiceWrapper implements ContactService,
027 ServiceWrapper<ContactService> {
028 public ContactServiceWrapper(ContactService contactService) {
029 _contactService = contactService;
030 }
031
032
037 public java.lang.String getBeanIdentifier() {
038 return _contactService.getBeanIdentifier();
039 }
040
041
046 public void setBeanIdentifier(java.lang.String beanIdentifier) {
047 _contactService.setBeanIdentifier(beanIdentifier);
048 }
049
050 public com.liferay.portal.model.Contact getContact(long contactId)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException {
053 return _contactService.getContact(contactId);
054 }
055
056
059 public ContactService getWrappedContactService() {
060 return _contactService;
061 }
062
063
066 public void setWrappedContactService(ContactService contactService) {
067 _contactService = contactService;
068 }
069
070 public ContactService getWrappedService() {
071 return _contactService;
072 }
073
074 public void setWrappedService(ContactService contactService) {
075 _contactService = contactService;
076 }
077
078 private ContactService _contactService;
079 }