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 java.util.List<Object> dynamicQuery(
77          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78          int end,
79          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
80          throws com.liferay.portal.kernel.exception.SystemException {
81          return _assetTagStatsLocalService.dynamicQuery(dynamicQuery, start,
82              end, orderByComparator);
83      }
84  
85      public int dynamicQueryCount(
86          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
87          throws com.liferay.portal.kernel.exception.SystemException {
88          return _assetTagStatsLocalService.dynamicQueryCount(dynamicQuery);
89      }
90  
91      public com.liferay.portlet.asset.model.AssetTagStats getAssetTagStats(
92          long tagStatsId)
93          throws com.liferay.portal.kernel.exception.PortalException,
94              com.liferay.portal.kernel.exception.SystemException {
95          return _assetTagStatsLocalService.getAssetTagStats(tagStatsId);
96      }
97  
98      public java.util.List<com.liferay.portlet.asset.model.AssetTagStats> getAssetTagStatses(
99          int start, int end)
100         throws com.liferay.portal.kernel.exception.SystemException {
101         return _assetTagStatsLocalService.getAssetTagStatses(start, end);
102     }
103 
104     public int getAssetTagStatsesCount()
105         throws com.liferay.portal.kernel.exception.SystemException {
106         return _assetTagStatsLocalService.getAssetTagStatsesCount();
107     }
108 
109     public com.liferay.portlet.asset.model.AssetTagStats updateAssetTagStats(
110         com.liferay.portlet.asset.model.AssetTagStats assetTagStats)
111         throws com.liferay.portal.kernel.exception.SystemException {
112         return _assetTagStatsLocalService.updateAssetTagStats(assetTagStats);
113     }
114 
115     public com.liferay.portlet.asset.model.AssetTagStats updateAssetTagStats(
116         com.liferay.portlet.asset.model.AssetTagStats assetTagStats,
117         boolean merge)
118         throws com.liferay.portal.kernel.exception.SystemException {
119         return _assetTagStatsLocalService.updateAssetTagStats(assetTagStats,
120             merge);
121     }
122 
123     public com.liferay.portlet.asset.model.AssetTagStats addTagStats(
124         long tagId, long classNameId)
125         throws com.liferay.portal.kernel.exception.SystemException {
126         return _assetTagStatsLocalService.addTagStats(tagId, classNameId);
127     }
128 
129     public void deleteTagStatsByClassNameId(long classNameId)
130         throws com.liferay.portal.kernel.exception.SystemException {
131         _assetTagStatsLocalService.deleteTagStatsByClassNameId(classNameId);
132     }
133 
134     public void deleteTagStatsByTagId(long tagId)
135         throws com.liferay.portal.kernel.exception.SystemException {
136         _assetTagStatsLocalService.deleteTagStatsByTagId(tagId);
137     }
138 
139     public com.liferay.portlet.asset.model.AssetTagStats getTagStats(
140         long tagId, long classNameId)
141         throws com.liferay.portal.kernel.exception.SystemException {
142         return _assetTagStatsLocalService.getTagStats(tagId, classNameId);
143     }
144 
145     public com.liferay.portlet.asset.model.AssetTagStats updateTagStats(
146         long tagId, long classNameId)
147         throws com.liferay.portal.kernel.exception.PortalException,
148             com.liferay.portal.kernel.exception.SystemException {
149         return _assetTagStatsLocalService.updateTagStats(tagId, classNameId);
150     }
151 
152     public AssetTagStatsLocalService getWrappedAssetTagStatsLocalService() {
153         return _assetTagStatsLocalService;
154     }
155 
156     private AssetTagStatsLocalService _assetTagStatsLocalService;
157 }