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.portlet.asset.service;
16  
17  
18  /**
19   * <a href="AssetTagStatsLocalServiceUtil.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 AssetTagStatsLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetTagStatsLocalService
32   * @generated
33   */
34  public class AssetTagStatsLocalServiceWrapper
35      implements AssetTagStatsLocalService {
36      public AssetTagStatsLocalServiceWrapper(
37          AssetTagStatsLocalService assetTagStatsLocalService) {
38          _assetTagStatsLocalService = assetTagStatsLocalService;
39      }
40  
41      public com.liferay.portlet.asset.model.AssetTagStats addAssetTagStats(
42          com.liferay.portlet.asset.model.AssetTagStats assetTagStats)
43          throws com.liferay.portal.kernel.exception.SystemException {
44          return _assetTagStatsLocalService.addAssetTagStats(assetTagStats);
45      }
46  
47      public com.liferay.portlet.asset.model.AssetTagStats createAssetTagStats(
48          long tagStatsId) {
49          return _assetTagStatsLocalService.createAssetTagStats(tagStatsId);
50      }
51  
52      public void deleteAssetTagStats(long tagStatsId)
53          throws com.liferay.portal.kernel.exception.PortalException,
54              com.liferay.portal.kernel.exception.SystemException {
55          _assetTagStatsLocalService.deleteAssetTagStats(tagStatsId);
56      }
57  
58      public void deleteAssetTagStats(
59          com.liferay.portlet.asset.model.AssetTagStats assetTagStats)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          _assetTagStatsLocalService.deleteAssetTagStats(assetTagStats);
62      }
63  
64      public java.util.List<Object> dynamicQuery(
65          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66          throws com.liferay.portal.kernel.exception.SystemException {
67          return _assetTagStatsLocalService.dynamicQuery(dynamicQuery);
68      }
69  
70      public java.util.List<Object> dynamicQuery(
71          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72          int end) throws com.liferay.portal.kernel.exception.SystemException {
73          return _assetTagStatsLocalService.dynamicQuery(dynamicQuery, start, end);
74      }
75  
76      public com.liferay.portlet.asset.model.AssetTagStats getAssetTagStats(
77          long tagStatsId)
78          throws com.liferay.portal.kernel.exception.PortalException,
79              com.liferay.portal.kernel.exception.SystemException {
80          return _assetTagStatsLocalService.getAssetTagStats(tagStatsId);
81      }
82  
83      public java.util.List<com.liferay.portlet.asset.model.AssetTagStats> getAssetTagStatses(
84          int start, int end)
85          throws com.liferay.portal.kernel.exception.SystemException {
86          return _assetTagStatsLocalService.getAssetTagStatses(start, end);
87      }
88  
89      public int getAssetTagStatsesCount()
90          throws com.liferay.portal.kernel.exception.SystemException {
91          return _assetTagStatsLocalService.getAssetTagStatsesCount();
92      }
93  
94      public com.liferay.portlet.asset.model.AssetTagStats updateAssetTagStats(
95          com.liferay.portlet.asset.model.AssetTagStats assetTagStats)
96          throws com.liferay.portal.kernel.exception.SystemException {
97          return _assetTagStatsLocalService.updateAssetTagStats(assetTagStats);
98      }
99  
100     public com.liferay.portlet.asset.model.AssetTagStats updateAssetTagStats(
101         com.liferay.portlet.asset.model.AssetTagStats assetTagStats,
102         boolean merge)
103         throws com.liferay.portal.kernel.exception.SystemException {
104         return _assetTagStatsLocalService.updateAssetTagStats(assetTagStats,
105             merge);
106     }
107 
108     public com.liferay.portlet.asset.model.AssetTagStats addTagStats(
109         long tagId, long classNameId)
110         throws com.liferay.portal.kernel.exception.SystemException {
111         return _assetTagStatsLocalService.addTagStats(tagId, classNameId);
112     }
113 
114     public void deleteTagStatsByClassNameId(long classNameId)
115         throws com.liferay.portal.kernel.exception.SystemException {
116         _assetTagStatsLocalService.deleteTagStatsByClassNameId(classNameId);
117     }
118 
119     public void deleteTagStatsByTagId(long tagId)
120         throws com.liferay.portal.kernel.exception.SystemException {
121         _assetTagStatsLocalService.deleteTagStatsByTagId(tagId);
122     }
123 
124     public com.liferay.portlet.asset.model.AssetTagStats getTagStats(
125         long tagId, long classNameId)
126         throws com.liferay.portal.kernel.exception.SystemException {
127         return _assetTagStatsLocalService.getTagStats(tagId, classNameId);
128     }
129 
130     public com.liferay.portlet.asset.model.AssetTagStats updateTagStats(
131         long tagId, long classNameId)
132         throws com.liferay.portal.kernel.exception.PortalException,
133             com.liferay.portal.kernel.exception.SystemException {
134         return _assetTagStatsLocalService.updateTagStats(tagId, classNameId);
135     }
136 
137     public AssetTagStatsLocalService getWrappedAssetTagStatsLocalService() {
138         return _assetTagStatsLocalService;
139     }
140 
141     private AssetTagStatsLocalService _assetTagStatsLocalService;
142 }