001    /**
002     * Copyright (c) 2000-2011 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    /**
018     * <p>
019     * This class is a wrapper for {@link BrowserTrackerLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       BrowserTrackerLocalService
024     * @generated
025     */
026    public class BrowserTrackerLocalServiceWrapper
027            implements BrowserTrackerLocalService {
028            public BrowserTrackerLocalServiceWrapper(
029                    BrowserTrackerLocalService browserTrackerLocalService) {
030                    _browserTrackerLocalService = browserTrackerLocalService;
031            }
032    
033            /**
034            * Adds the browser tracker to the database. Also notifies the appropriate model listeners.
035            *
036            * @param browserTracker the browser tracker
037            * @return the browser tracker that was added
038            * @throws SystemException if a system exception occurred
039            */
040            public com.liferay.portal.model.BrowserTracker addBrowserTracker(
041                    com.liferay.portal.model.BrowserTracker browserTracker)
042                    throws com.liferay.portal.kernel.exception.SystemException {
043                    return _browserTrackerLocalService.addBrowserTracker(browserTracker);
044            }
045    
046            /**
047            * Creates a new browser tracker with the primary key. Does not add the browser tracker to the database.
048            *
049            * @param browserTrackerId the primary key for the new browser tracker
050            * @return the new browser tracker
051            */
052            public com.liferay.portal.model.BrowserTracker createBrowserTracker(
053                    long browserTrackerId) {
054                    return _browserTrackerLocalService.createBrowserTracker(browserTrackerId);
055            }
056    
057            /**
058            * Deletes the browser tracker with the primary key from the database. Also notifies the appropriate model listeners.
059            *
060            * @param browserTrackerId the primary key of the browser tracker
061            * @throws PortalException if a browser tracker with the primary key could not be found
062            * @throws SystemException if a system exception occurred
063            */
064            public void deleteBrowserTracker(long browserTrackerId)
065                    throws com.liferay.portal.kernel.exception.PortalException,
066                            com.liferay.portal.kernel.exception.SystemException {
067                    _browserTrackerLocalService.deleteBrowserTracker(browserTrackerId);
068            }
069    
070            /**
071            * Deletes the browser tracker from the database. Also notifies the appropriate model listeners.
072            *
073            * @param browserTracker the browser tracker
074            * @throws SystemException if a system exception occurred
075            */
076            public void deleteBrowserTracker(
077                    com.liferay.portal.model.BrowserTracker browserTracker)
078                    throws com.liferay.portal.kernel.exception.SystemException {
079                    _browserTrackerLocalService.deleteBrowserTracker(browserTracker);
080            }
081    
082            /**
083            * Performs a dynamic query on the database and returns the matching rows.
084            *
085            * @param dynamicQuery the dynamic query
086            * @return the matching rows
087            * @throws SystemException if a system exception occurred
088            */
089            @SuppressWarnings("rawtypes")
090            public java.util.List dynamicQuery(
091                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _browserTrackerLocalService.dynamicQuery(dynamicQuery);
094            }
095    
096            /**
097            * Performs a dynamic query on the database and returns a range of the matching rows.
098            *
099            * <p>
100            * 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.
101            * </p>
102            *
103            * @param dynamicQuery the dynamic query
104            * @param start the lower bound of the range of model instances
105            * @param end the upper bound of the range of model instances (not inclusive)
106            * @return the range of matching rows
107            * @throws SystemException if a system exception occurred
108            */
109            @SuppressWarnings("rawtypes")
110            public java.util.List dynamicQuery(
111                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112                    int end) throws com.liferay.portal.kernel.exception.SystemException {
113                    return _browserTrackerLocalService.dynamicQuery(dynamicQuery, start, end);
114            }
115    
116            /**
117            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
118            *
119            * <p>
120            * 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.
121            * </p>
122            *
123            * @param dynamicQuery the dynamic query
124            * @param start the lower bound of the range of model instances
125            * @param end the upper bound of the range of model instances (not inclusive)
126            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
127            * @return the ordered range of matching rows
128            * @throws SystemException if a system exception occurred
129            */
130            @SuppressWarnings("rawtypes")
131            public java.util.List dynamicQuery(
132                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133                    int end,
134                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135                    throws com.liferay.portal.kernel.exception.SystemException {
136                    return _browserTrackerLocalService.dynamicQuery(dynamicQuery, start,
137                            end, orderByComparator);
138            }
139    
140            /**
141            * Returns the number of rows that match the dynamic query.
142            *
143            * @param dynamicQuery the dynamic query
144            * @return the number of rows that match the dynamic query
145            * @throws SystemException if a system exception occurred
146            */
147            public long dynamicQueryCount(
148                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149                    throws com.liferay.portal.kernel.exception.SystemException {
150                    return _browserTrackerLocalService.dynamicQueryCount(dynamicQuery);
151            }
152    
153            /**
154            * Returns the browser tracker with the primary key.
155            *
156            * @param browserTrackerId the primary key of the browser tracker
157            * @return the browser tracker
158            * @throws PortalException if a browser tracker with the primary key could not be found
159            * @throws SystemException if a system exception occurred
160            */
161            public com.liferay.portal.model.BrowserTracker getBrowserTracker(
162                    long browserTrackerId)
163                    throws com.liferay.portal.kernel.exception.PortalException,
164                            com.liferay.portal.kernel.exception.SystemException {
165                    return _browserTrackerLocalService.getBrowserTracker(browserTrackerId);
166            }
167    
168            public com.liferay.portal.model.PersistedModel getPersistedModel(
169                    java.io.Serializable primaryKeyObj)
170                    throws com.liferay.portal.kernel.exception.PortalException,
171                            com.liferay.portal.kernel.exception.SystemException {
172                    return _browserTrackerLocalService.getPersistedModel(primaryKeyObj);
173            }
174    
175            /**
176            * Returns a range of all the browser trackers.
177            *
178            * <p>
179            * 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.
180            * </p>
181            *
182            * @param start the lower bound of the range of browser trackers
183            * @param end the upper bound of the range of browser trackers (not inclusive)
184            * @return the range of browser trackers
185            * @throws SystemException if a system exception occurred
186            */
187            public java.util.List<com.liferay.portal.model.BrowserTracker> getBrowserTrackers(
188                    int start, int end)
189                    throws com.liferay.portal.kernel.exception.SystemException {
190                    return _browserTrackerLocalService.getBrowserTrackers(start, end);
191            }
192    
193            /**
194            * Returns the number of browser trackers.
195            *
196            * @return the number of browser trackers
197            * @throws SystemException if a system exception occurred
198            */
199            public int getBrowserTrackersCount()
200                    throws com.liferay.portal.kernel.exception.SystemException {
201                    return _browserTrackerLocalService.getBrowserTrackersCount();
202            }
203    
204            /**
205            * Updates the browser tracker in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
206            *
207            * @param browserTracker the browser tracker
208            * @return the browser tracker that was updated
209            * @throws SystemException if a system exception occurred
210            */
211            public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
212                    com.liferay.portal.model.BrowserTracker browserTracker)
213                    throws com.liferay.portal.kernel.exception.SystemException {
214                    return _browserTrackerLocalService.updateBrowserTracker(browserTracker);
215            }
216    
217            /**
218            * Updates the browser tracker in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
219            *
220            * @param browserTracker the browser tracker
221            * @param merge whether to merge the browser tracker 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.
222            * @return the browser tracker that was updated
223            * @throws SystemException if a system exception occurred
224            */
225            public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
226                    com.liferay.portal.model.BrowserTracker browserTracker, boolean merge)
227                    throws com.liferay.portal.kernel.exception.SystemException {
228                    return _browserTrackerLocalService.updateBrowserTracker(browserTracker,
229                            merge);
230            }
231    
232            /**
233            * Returns the Spring bean ID for this bean.
234            *
235            * @return the Spring bean ID for this bean
236            */
237            public java.lang.String getBeanIdentifier() {
238                    return _browserTrackerLocalService.getBeanIdentifier();
239            }
240    
241            /**
242            * Sets the Spring bean ID for this bean.
243            *
244            * @param beanIdentifier the Spring bean ID for this bean
245            */
246            public void setBeanIdentifier(java.lang.String beanIdentifier) {
247                    _browserTrackerLocalService.setBeanIdentifier(beanIdentifier);
248            }
249    
250            public void deleteUserBrowserTracker(long userId)
251                    throws com.liferay.portal.kernel.exception.SystemException {
252                    _browserTrackerLocalService.deleteUserBrowserTracker(userId);
253            }
254    
255            public com.liferay.portal.model.BrowserTracker getBrowserTracker(
256                    long userId, long browserKey)
257                    throws com.liferay.portal.kernel.exception.SystemException {
258                    return _browserTrackerLocalService.getBrowserTracker(userId, browserKey);
259            }
260    
261            public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
262                    long userId, long browserKey)
263                    throws com.liferay.portal.kernel.exception.SystemException {
264                    return _browserTrackerLocalService.updateBrowserTracker(userId,
265                            browserKey);
266            }
267    
268            public BrowserTrackerLocalService getWrappedBrowserTrackerLocalService() {
269                    return _browserTrackerLocalService;
270            }
271    
272            public void setWrappedBrowserTrackerLocalService(
273                    BrowserTrackerLocalService browserTrackerLocalService) {
274                    _browserTrackerLocalService = browserTrackerLocalService;
275            }
276    
277            private BrowserTrackerLocalService _browserTrackerLocalService;
278    }