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