1
14
15 package com.liferay.portal.service;
16
17
18
34 public class AccountLocalServiceWrapper implements AccountLocalService {
35 public AccountLocalServiceWrapper(AccountLocalService accountLocalService) {
36 _accountLocalService = accountLocalService;
37 }
38
39 public com.liferay.portal.model.Account addAccount(
40 com.liferay.portal.model.Account account)
41 throws com.liferay.portal.SystemException {
42 return _accountLocalService.addAccount(account);
43 }
44
45 public com.liferay.portal.model.Account createAccount(long accountId) {
46 return _accountLocalService.createAccount(accountId);
47 }
48
49 public void deleteAccount(long accountId)
50 throws com.liferay.portal.PortalException,
51 com.liferay.portal.SystemException {
52 _accountLocalService.deleteAccount(accountId);
53 }
54
55 public void deleteAccount(com.liferay.portal.model.Account account)
56 throws com.liferay.portal.SystemException {
57 _accountLocalService.deleteAccount(account);
58 }
59
60 public java.util.List<Object> dynamicQuery(
61 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
62 throws com.liferay.portal.SystemException {
63 return _accountLocalService.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.SystemException {
69 return _accountLocalService.dynamicQuery(dynamicQuery, start, end);
70 }
71
72 public java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74 int end,
75 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
76 throws com.liferay.portal.SystemException {
77 return _accountLocalService.dynamicQuery(dynamicQuery, start, end,
78 orderByComparator);
79 }
80
81 public int dynamicQueryCount(
82 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
83 throws com.liferay.portal.SystemException {
84 return _accountLocalService.dynamicQueryCount(dynamicQuery);
85 }
86
87 public com.liferay.portal.model.Account getAccount(long accountId)
88 throws com.liferay.portal.PortalException,
89 com.liferay.portal.SystemException {
90 return _accountLocalService.getAccount(accountId);
91 }
92
93 public java.util.List<com.liferay.portal.model.Account> getAccounts(
94 int start, int end) throws com.liferay.portal.SystemException {
95 return _accountLocalService.getAccounts(start, end);
96 }
97
98 public int getAccountsCount() throws com.liferay.portal.SystemException {
99 return _accountLocalService.getAccountsCount();
100 }
101
102 public com.liferay.portal.model.Account updateAccount(
103 com.liferay.portal.model.Account account)
104 throws com.liferay.portal.SystemException {
105 return _accountLocalService.updateAccount(account);
106 }
107
108 public com.liferay.portal.model.Account updateAccount(
109 com.liferay.portal.model.Account account, boolean merge)
110 throws com.liferay.portal.SystemException {
111 return _accountLocalService.updateAccount(account, merge);
112 }
113
114 public com.liferay.portal.model.Account getAccount(long companyId,
115 long accountId)
116 throws com.liferay.portal.PortalException,
117 com.liferay.portal.SystemException {
118 return _accountLocalService.getAccount(companyId, accountId);
119 }
120
121 public AccountLocalService getWrappedAccountLocalService() {
122 return _accountLocalService;
123 }
124
125 private AccountLocalService _accountLocalService;
126 }