1
22
23 package com.liferay.portal.service;
24
25
26
47 public class AccountLocalServiceUtil {
48 public static com.liferay.portal.model.Account addAccount(
49 com.liferay.portal.model.Account account)
50 throws com.liferay.portal.SystemException {
51 return getService().addAccount(account);
52 }
53
54 public static com.liferay.portal.model.Account createAccount(long accountId) {
55 return getService().createAccount(accountId);
56 }
57
58 public static void deleteAccount(long accountId)
59 throws com.liferay.portal.PortalException,
60 com.liferay.portal.SystemException {
61 getService().deleteAccount(accountId);
62 }
63
64 public static void deleteAccount(com.liferay.portal.model.Account account)
65 throws com.liferay.portal.SystemException {
66 getService().deleteAccount(account);
67 }
68
69 public static java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
71 throws com.liferay.portal.SystemException {
72 return getService().dynamicQuery(dynamicQuery);
73 }
74
75 public static java.util.List<Object> dynamicQuery(
76 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77 int end) throws com.liferay.portal.SystemException {
78 return getService().dynamicQuery(dynamicQuery, start, end);
79 }
80
81 public static com.liferay.portal.model.Account getAccount(long accountId)
82 throws com.liferay.portal.PortalException,
83 com.liferay.portal.SystemException {
84 return getService().getAccount(accountId);
85 }
86
87 public static java.util.List<com.liferay.portal.model.Account> getAccounts(
88 int start, int end) throws com.liferay.portal.SystemException {
89 return getService().getAccounts(start, end);
90 }
91
92 public static int getAccountsCount()
93 throws com.liferay.portal.SystemException {
94 return getService().getAccountsCount();
95 }
96
97 public static com.liferay.portal.model.Account updateAccount(
98 com.liferay.portal.model.Account account)
99 throws com.liferay.portal.SystemException {
100 return getService().updateAccount(account);
101 }
102
103 public static com.liferay.portal.model.Account updateAccount(
104 com.liferay.portal.model.Account account, boolean merge)
105 throws com.liferay.portal.SystemException {
106 return getService().updateAccount(account, merge);
107 }
108
109 public static com.liferay.portal.model.Account getAccount(long companyId,
110 long accountId)
111 throws com.liferay.portal.PortalException,
112 com.liferay.portal.SystemException {
113 return getService().getAccount(companyId, accountId);
114 }
115
116 public static AccountLocalService getService() {
117 if (_service == null) {
118 throw new RuntimeException("AccountLocalService is not set");
119 }
120
121 return _service;
122 }
123
124 public void setService(AccountLocalService service) {
125 _service = service;
126 }
127
128 private static AccountLocalService _service;
129 }