1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.service;
16  
17  
18  /**
19   * <a href="UserTrackerLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link UserTrackerLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       UserTrackerLocalService
32   * @generated
33   */
34  public class UserTrackerLocalServiceWrapper implements UserTrackerLocalService {
35      public UserTrackerLocalServiceWrapper(
36          UserTrackerLocalService userTrackerLocalService) {
37          _userTrackerLocalService = userTrackerLocalService;
38      }
39  
40      public com.liferay.portal.model.UserTracker addUserTracker(
41          com.liferay.portal.model.UserTracker userTracker)
42          throws com.liferay.portal.kernel.exception.SystemException {
43          return _userTrackerLocalService.addUserTracker(userTracker);
44      }
45  
46      public com.liferay.portal.model.UserTracker createUserTracker(
47          long userTrackerId) {
48          return _userTrackerLocalService.createUserTracker(userTrackerId);
49      }
50  
51      public void deleteUserTracker(long userTrackerId)
52          throws com.liferay.portal.kernel.exception.PortalException,
53              com.liferay.portal.kernel.exception.SystemException {
54          _userTrackerLocalService.deleteUserTracker(userTrackerId);
55      }
56  
57      public void deleteUserTracker(
58          com.liferay.portal.model.UserTracker userTracker)
59          throws com.liferay.portal.kernel.exception.SystemException {
60          _userTrackerLocalService.deleteUserTracker(userTracker);
61      }
62  
63      public java.util.List<Object> dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.kernel.exception.SystemException {
66          return _userTrackerLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      public java.util.List<Object> dynamicQuery(
70          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71          int end) throws com.liferay.portal.kernel.exception.SystemException {
72          return _userTrackerLocalService.dynamicQuery(dynamicQuery, start, end);
73      }
74  
75      public com.liferay.portal.model.UserTracker getUserTracker(
76          long userTrackerId)
77          throws com.liferay.portal.kernel.exception.PortalException,
78              com.liferay.portal.kernel.exception.SystemException {
79          return _userTrackerLocalService.getUserTracker(userTrackerId);
80      }
81  
82      public java.util.List<com.liferay.portal.model.UserTracker> getUserTrackers(
83          int start, int end)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _userTrackerLocalService.getUserTrackers(start, end);
86      }
87  
88      public int getUserTrackersCount()
89          throws com.liferay.portal.kernel.exception.SystemException {
90          return _userTrackerLocalService.getUserTrackersCount();
91      }
92  
93      public com.liferay.portal.model.UserTracker updateUserTracker(
94          com.liferay.portal.model.UserTracker userTracker)
95          throws com.liferay.portal.kernel.exception.SystemException {
96          return _userTrackerLocalService.updateUserTracker(userTracker);
97      }
98  
99      public com.liferay.portal.model.UserTracker updateUserTracker(
100         com.liferay.portal.model.UserTracker userTracker, boolean merge)
101         throws com.liferay.portal.kernel.exception.SystemException {
102         return _userTrackerLocalService.updateUserTracker(userTracker, merge);
103     }
104 
105     public com.liferay.portal.model.UserTracker addUserTracker(long companyId,
106         long userId, java.util.Date modifiedDate, java.lang.String sessionId,
107         java.lang.String remoteAddr, java.lang.String remoteHost,
108         java.lang.String userAgent,
109         java.util.List<com.liferay.portal.model.UserTrackerPath> userTrackerPaths)
110         throws com.liferay.portal.kernel.exception.SystemException {
111         return _userTrackerLocalService.addUserTracker(companyId, userId,
112             modifiedDate, sessionId, remoteAddr, remoteHost, userAgent,
113             userTrackerPaths);
114     }
115 
116     public java.util.List<com.liferay.portal.model.UserTracker> getUserTrackers(
117         long companyId, int start, int end)
118         throws com.liferay.portal.kernel.exception.SystemException {
119         return _userTrackerLocalService.getUserTrackers(companyId, start, end);
120     }
121 
122     public UserTrackerLocalService getWrappedUserTrackerLocalService() {
123         return _userTrackerLocalService;
124     }
125 
126     private UserTrackerLocalService _userTrackerLocalService;
127 }