001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    
019    /**
020     * The utility for the account local service. This utility wraps {@link com.liferay.portal.service.impl.AccountLocalServiceImpl} and is the primary access point for service operations in application layer code running on the local server.
021     *
022     * <p>
023     * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.AccountLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
024     * </p>
025     *
026     * <p>
027     * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
028     * </p>
029     *
030     * @author Brian Wing Shun Chan
031     * @see AccountLocalService
032     * @see com.liferay.portal.service.base.AccountLocalServiceBaseImpl
033     * @see com.liferay.portal.service.impl.AccountLocalServiceImpl
034     * @generated
035     */
036    public class AccountLocalServiceUtil {
037            /**
038            * Adds the account to the database. Also notifies the appropriate model listeners.
039            *
040            * @param account the account to add
041            * @return the account that was added
042            * @throws SystemException if a system exception occurred
043            */
044            public static com.liferay.portal.model.Account addAccount(
045                    com.liferay.portal.model.Account account)
046                    throws com.liferay.portal.kernel.exception.SystemException {
047                    return getService().addAccount(account);
048            }
049    
050            /**
051            * Creates a new account with the primary key. Does not add the account to the database.
052            *
053            * @param accountId the primary key for the new account
054            * @return the new account
055            */
056            public static com.liferay.portal.model.Account createAccount(long accountId) {
057                    return getService().createAccount(accountId);
058            }
059    
060            /**
061            * Deletes the account with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param accountId the primary key of the account to delete
064            * @throws PortalException if a account with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            public static void deleteAccount(long accountId)
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException {
070                    getService().deleteAccount(accountId);
071            }
072    
073            /**
074            * Deletes the account from the database. Also notifies the appropriate model listeners.
075            *
076            * @param account the account to delete
077            * @throws SystemException if a system exception occurred
078            */
079            public static void deleteAccount(com.liferay.portal.model.Account account)
080                    throws com.liferay.portal.kernel.exception.SystemException {
081                    getService().deleteAccount(account);
082            }
083    
084            /**
085            * Performs a dynamic query on the database and returns the matching rows.
086            *
087            * @param dynamicQuery the dynamic query to search with
088            * @return the matching rows
089            * @throws SystemException if a system exception occurred
090            */
091            @SuppressWarnings("rawtypes")
092            public static java.util.List dynamicQuery(
093                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
094                    throws com.liferay.portal.kernel.exception.SystemException {
095                    return getService().dynamicQuery(dynamicQuery);
096            }
097    
098            /**
099            * Performs a dynamic query on the database and returns a range of the matching rows.
100            *
101            * <p>
102            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
103            * </p>
104            *
105            * @param dynamicQuery the dynamic query to search with
106            * @param start the lower bound of the range of model instances to return
107            * @param end the upper bound of the range of model instances to return (not inclusive)
108            * @return the range of matching rows
109            * @throws SystemException if a system exception occurred
110            */
111            @SuppressWarnings("rawtypes")
112            public static java.util.List dynamicQuery(
113                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
114                    int end) throws com.liferay.portal.kernel.exception.SystemException {
115                    return getService().dynamicQuery(dynamicQuery, start, end);
116            }
117    
118            /**
119            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
120            *
121            * <p>
122            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
123            * </p>
124            *
125            * @param dynamicQuery the dynamic query to search with
126            * @param start the lower bound of the range of model instances to return
127            * @param end the upper bound of the range of model instances to return (not inclusive)
128            * @param orderByComparator the comparator to order the results by
129            * @return the ordered range of matching rows
130            * @throws SystemException if a system exception occurred
131            */
132            @SuppressWarnings("rawtypes")
133            public static java.util.List dynamicQuery(
134                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
135                    int end,
136                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
137                    throws com.liferay.portal.kernel.exception.SystemException {
138                    return getService()
139                                       .dynamicQuery(dynamicQuery, start, end, orderByComparator);
140            }
141    
142            /**
143            * Counts the number of rows that match the dynamic query.
144            *
145            * @param dynamicQuery the dynamic query to search with
146            * @return the number of rows that match the dynamic query
147            * @throws SystemException if a system exception occurred
148            */
149            public static long dynamicQueryCount(
150                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
151                    throws com.liferay.portal.kernel.exception.SystemException {
152                    return getService().dynamicQueryCount(dynamicQuery);
153            }
154    
155            /**
156            * Gets the account with the primary key.
157            *
158            * @param accountId the primary key of the account to get
159            * @return the account
160            * @throws PortalException if a account with the primary key could not be found
161            * @throws SystemException if a system exception occurred
162            */
163            public static com.liferay.portal.model.Account getAccount(long accountId)
164                    throws com.liferay.portal.kernel.exception.PortalException,
165                            com.liferay.portal.kernel.exception.SystemException {
166                    return getService().getAccount(accountId);
167            }
168    
169            /**
170            * Gets a range of all the accounts.
171            *
172            * <p>
173            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
174            * </p>
175            *
176            * @param start the lower bound of the range of accounts to return
177            * @param end the upper bound of the range of accounts to return (not inclusive)
178            * @return the range of accounts
179            * @throws SystemException if a system exception occurred
180            */
181            public static java.util.List<com.liferay.portal.model.Account> getAccounts(
182                    int start, int end)
183                    throws com.liferay.portal.kernel.exception.SystemException {
184                    return getService().getAccounts(start, end);
185            }
186    
187            /**
188            * Gets the number of accounts.
189            *
190            * @return the number of accounts
191            * @throws SystemException if a system exception occurred
192            */
193            public static int getAccountsCount()
194                    throws com.liferay.portal.kernel.exception.SystemException {
195                    return getService().getAccountsCount();
196            }
197    
198            /**
199            * Updates the account in the database. Also notifies the appropriate model listeners.
200            *
201            * @param account the account to update
202            * @return the account that was updated
203            * @throws SystemException if a system exception occurred
204            */
205            public static com.liferay.portal.model.Account updateAccount(
206                    com.liferay.portal.model.Account account)
207                    throws com.liferay.portal.kernel.exception.SystemException {
208                    return getService().updateAccount(account);
209            }
210    
211            /**
212            * Updates the account in the database. Also notifies the appropriate model listeners.
213            *
214            * @param account the account to update
215            * @param merge whether to merge the account with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
216            * @return the account that was updated
217            * @throws SystemException if a system exception occurred
218            */
219            public static com.liferay.portal.model.Account updateAccount(
220                    com.liferay.portal.model.Account account, boolean merge)
221                    throws com.liferay.portal.kernel.exception.SystemException {
222                    return getService().updateAccount(account, merge);
223            }
224    
225            public static com.liferay.portal.model.Account getAccount(long companyId,
226                    long accountId)
227                    throws com.liferay.portal.kernel.exception.PortalException,
228                            com.liferay.portal.kernel.exception.SystemException {
229                    return getService().getAccount(companyId, accountId);
230            }
231    
232            public static AccountLocalService getService() {
233                    if (_service == null) {
234                            _service = (AccountLocalService)PortalBeanLocatorUtil.locate(AccountLocalService.class.getName());
235                    }
236    
237                    return _service;
238            }
239    
240            public void setService(AccountLocalService service) {
241                    _service = service;
242            }
243    
244            private static AccountLocalService _service;
245    }