1
14
15 package com.liferay.portal.service;
16
17
18
34 public class ContactLocalServiceWrapper implements ContactLocalService {
35 public ContactLocalServiceWrapper(ContactLocalService contactLocalService) {
36 _contactLocalService = contactLocalService;
37 }
38
39 public com.liferay.portal.model.Contact addContact(
40 com.liferay.portal.model.Contact contact)
41 throws com.liferay.portal.kernel.exception.SystemException {
42 return _contactLocalService.addContact(contact);
43 }
44
45 public com.liferay.portal.model.Contact createContact(long contactId) {
46 return _contactLocalService.createContact(contactId);
47 }
48
49 public void deleteContact(long contactId)
50 throws com.liferay.portal.kernel.exception.PortalException,
51 com.liferay.portal.kernel.exception.SystemException {
52 _contactLocalService.deleteContact(contactId);
53 }
54
55 public void deleteContact(com.liferay.portal.model.Contact contact)
56 throws com.liferay.portal.kernel.exception.SystemException {
57 _contactLocalService.deleteContact(contact);
58 }
59
60 public java.util.List<Object> dynamicQuery(
61 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
62 throws com.liferay.portal.kernel.exception.SystemException {
63 return _contactLocalService.dynamicQuery(dynamicQuery);
64 }
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
68 int end) throws com.liferay.portal.kernel.exception.SystemException {
69 return _contactLocalService.dynamicQuery(dynamicQuery, start, end);
70 }
71
72 public com.liferay.portal.model.Contact getContact(long contactId)
73 throws com.liferay.portal.kernel.exception.PortalException,
74 com.liferay.portal.kernel.exception.SystemException {
75 return _contactLocalService.getContact(contactId);
76 }
77
78 public java.util.List<com.liferay.portal.model.Contact> getContacts(
79 int start, int end)
80 throws com.liferay.portal.kernel.exception.SystemException {
81 return _contactLocalService.getContacts(start, end);
82 }
83
84 public int getContactsCount()
85 throws com.liferay.portal.kernel.exception.SystemException {
86 return _contactLocalService.getContactsCount();
87 }
88
89 public com.liferay.portal.model.Contact updateContact(
90 com.liferay.portal.model.Contact contact)
91 throws com.liferay.portal.kernel.exception.SystemException {
92 return _contactLocalService.updateContact(contact);
93 }
94
95 public com.liferay.portal.model.Contact updateContact(
96 com.liferay.portal.model.Contact contact, boolean merge)
97 throws com.liferay.portal.kernel.exception.SystemException {
98 return _contactLocalService.updateContact(contact, merge);
99 }
100
101 public ContactLocalService getWrappedContactLocalService() {
102 return _contactLocalService;
103 }
104
105 private ContactLocalService _contactLocalService;
106 }