1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.service;
24  
25  
26  /**
27   * <a href="BrowserTrackerLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link BrowserTrackerLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       BrowserTrackerLocalService
40   * @generated
41   */
42  public class BrowserTrackerLocalServiceWrapper
43      implements BrowserTrackerLocalService {
44      public BrowserTrackerLocalServiceWrapper(
45          BrowserTrackerLocalService browserTrackerLocalService) {
46          _browserTrackerLocalService = browserTrackerLocalService;
47      }
48  
49      public com.liferay.portal.model.BrowserTracker addBrowserTracker(
50          com.liferay.portal.model.BrowserTracker browserTracker)
51          throws com.liferay.portal.SystemException {
52          return _browserTrackerLocalService.addBrowserTracker(browserTracker);
53      }
54  
55      public com.liferay.portal.model.BrowserTracker createBrowserTracker(
56          long browserTrackerId) {
57          return _browserTrackerLocalService.createBrowserTracker(browserTrackerId);
58      }
59  
60      public void deleteBrowserTracker(long browserTrackerId)
61          throws com.liferay.portal.PortalException,
62              com.liferay.portal.SystemException {
63          _browserTrackerLocalService.deleteBrowserTracker(browserTrackerId);
64      }
65  
66      public void deleteBrowserTracker(
67          com.liferay.portal.model.BrowserTracker browserTracker)
68          throws com.liferay.portal.SystemException {
69          _browserTrackerLocalService.deleteBrowserTracker(browserTracker);
70      }
71  
72      public java.util.List<Object> dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74          throws com.liferay.portal.SystemException {
75          return _browserTrackerLocalService.dynamicQuery(dynamicQuery);
76      }
77  
78      public java.util.List<Object> dynamicQuery(
79          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80          int end) throws com.liferay.portal.SystemException {
81          return _browserTrackerLocalService.dynamicQuery(dynamicQuery, start, end);
82      }
83  
84      public com.liferay.portal.model.BrowserTracker getBrowserTracker(
85          long browserTrackerId)
86          throws com.liferay.portal.PortalException,
87              com.liferay.portal.SystemException {
88          return _browserTrackerLocalService.getBrowserTracker(browserTrackerId);
89      }
90  
91      public java.util.List<com.liferay.portal.model.BrowserTracker> getBrowserTrackers(
92          int start, int end) throws com.liferay.portal.SystemException {
93          return _browserTrackerLocalService.getBrowserTrackers(start, end);
94      }
95  
96      public int getBrowserTrackersCount()
97          throws com.liferay.portal.SystemException {
98          return _browserTrackerLocalService.getBrowserTrackersCount();
99      }
100 
101     public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
102         com.liferay.portal.model.BrowserTracker browserTracker)
103         throws com.liferay.portal.SystemException {
104         return _browserTrackerLocalService.updateBrowserTracker(browserTracker);
105     }
106 
107     public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
108         com.liferay.portal.model.BrowserTracker browserTracker, boolean merge)
109         throws com.liferay.portal.SystemException {
110         return _browserTrackerLocalService.updateBrowserTracker(browserTracker,
111             merge);
112     }
113 
114     public void deleteUserBrowserTracker(long userId)
115         throws com.liferay.portal.SystemException {
116         _browserTrackerLocalService.deleteUserBrowserTracker(userId);
117     }
118 
119     public com.liferay.portal.model.BrowserTracker getBrowserTracker(
120         long userId, long browserKey) throws com.liferay.portal.SystemException {
121         return _browserTrackerLocalService.getBrowserTracker(userId, browserKey);
122     }
123 
124     public com.liferay.portal.model.BrowserTracker updateBrowserTracker(
125         long userId, long browserKey) throws com.liferay.portal.SystemException {
126         return _browserTrackerLocalService.updateBrowserTracker(userId,
127             browserKey);
128     }
129 
130     public BrowserTrackerLocalService getWrappedBrowserTrackerLocalService() {
131         return _browserTrackerLocalService;
132     }
133 
134     private BrowserTrackerLocalService _browserTrackerLocalService;
135 }