1
14
15 package com.liferay.portlet.tags.service;
16
17
33 public class TagsAssetLocalServiceWrapper implements TagsAssetLocalService {
34 public TagsAssetLocalServiceWrapper(
35 TagsAssetLocalService tagsAssetLocalService) {
36 _tagsAssetLocalService = tagsAssetLocalService;
37 }
38
39 public com.liferay.portlet.tags.model.TagsAsset addTagsAsset(
40 com.liferay.portlet.tags.model.TagsAsset tagsAsset)
41 throws com.liferay.portal.SystemException {
42 return _tagsAssetLocalService.addTagsAsset(tagsAsset);
43 }
44
45 public com.liferay.portlet.tags.model.TagsAsset createTagsAsset(
46 long assetId) {
47 return _tagsAssetLocalService.createTagsAsset(assetId);
48 }
49
50 public void deleteTagsAsset(long assetId)
51 throws com.liferay.portal.PortalException,
52 com.liferay.portal.SystemException {
53 _tagsAssetLocalService.deleteTagsAsset(assetId);
54 }
55
56 public void deleteTagsAsset(
57 com.liferay.portlet.tags.model.TagsAsset tagsAsset)
58 throws com.liferay.portal.SystemException {
59 _tagsAssetLocalService.deleteTagsAsset(tagsAsset);
60 }
61
62 @SuppressWarnings("rawtypes")
63 public java.util.List dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _tagsAssetLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 @SuppressWarnings("rawtypes")
70 public java.util.List dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException {
73 return _tagsAssetLocalService.dynamicQuery(dynamicQuery, start, end);
74 }
75
76 @SuppressWarnings("rawtypes")
77 public java.util.List dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.SystemException {
82 return _tagsAssetLocalService.dynamicQuery(dynamicQuery, start, end,
83 orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.SystemException {
89 return _tagsAssetLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.tags.model.TagsAsset getTagsAsset(long assetId)
93 throws com.liferay.portal.PortalException,
94 com.liferay.portal.SystemException {
95 return _tagsAssetLocalService.getTagsAsset(assetId);
96 }
97
98 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getTagsAssets(
99 int start, int end) throws com.liferay.portal.SystemException {
100 return _tagsAssetLocalService.getTagsAssets(start, end);
101 }
102
103 public int getTagsAssetsCount() throws com.liferay.portal.SystemException {
104 return _tagsAssetLocalService.getTagsAssetsCount();
105 }
106
107 public com.liferay.portlet.tags.model.TagsAsset updateTagsAsset(
108 com.liferay.portlet.tags.model.TagsAsset tagsAsset)
109 throws com.liferay.portal.SystemException {
110 return _tagsAssetLocalService.updateTagsAsset(tagsAsset);
111 }
112
113 public com.liferay.portlet.tags.model.TagsAsset updateTagsAsset(
114 com.liferay.portlet.tags.model.TagsAsset tagsAsset, boolean merge)
115 throws com.liferay.portal.SystemException {
116 return _tagsAssetLocalService.updateTagsAsset(tagsAsset, merge);
117 }
118
119 public void deleteAsset(long assetId)
120 throws com.liferay.portal.PortalException,
121 com.liferay.portal.SystemException {
122 _tagsAssetLocalService.deleteAsset(assetId);
123 }
124
125 public void deleteAsset(java.lang.String className, long classPK)
126 throws com.liferay.portal.SystemException {
127 _tagsAssetLocalService.deleteAsset(className, classPK);
128 }
129
130 public void deleteAsset(com.liferay.portlet.tags.model.TagsAsset asset)
131 throws com.liferay.portal.SystemException {
132 _tagsAssetLocalService.deleteAsset(asset);
133 }
134
135 public com.liferay.portlet.tags.model.TagsAsset getAsset(long assetId)
136 throws com.liferay.portal.PortalException,
137 com.liferay.portal.SystemException {
138 return _tagsAssetLocalService.getAsset(assetId);
139 }
140
141 public com.liferay.portlet.tags.model.TagsAsset getAsset(
142 java.lang.String className, long classPK)
143 throws com.liferay.portal.PortalException,
144 com.liferay.portal.SystemException {
145 return _tagsAssetLocalService.getAsset(className, classPK);
146 }
147
148 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
149 long groupId, long[] classNameIds, long[] entryIds, long[] notEntryIds,
150 boolean andOperator, boolean excludeZeroViewCount,
151 java.util.Date publishDate, java.util.Date expirationDate, int start,
152 int end) throws com.liferay.portal.SystemException {
153 return _tagsAssetLocalService.getAssets(groupId, classNameIds,
154 entryIds, notEntryIds, andOperator, excludeZeroViewCount,
155 publishDate, expirationDate, start, end);
156 }
157
158 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
159 long groupId, long[] classNameIds, long[] entryIds, long[] notEntryIds,
160 boolean andOperator, boolean excludeZeroViewCount, int start, int end)
161 throws com.liferay.portal.SystemException {
162 return _tagsAssetLocalService.getAssets(groupId, classNameIds,
163 entryIds, notEntryIds, andOperator, excludeZeroViewCount, start, end);
164 }
165
166 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
167 long groupId, long[] classNameIds, long[] entryIds, long[] notEntryIds,
168 boolean andOperator, java.lang.String orderByCol1,
169 java.lang.String orderByCol2, java.lang.String orderByType1,
170 java.lang.String orderByType2, boolean excludeZeroViewCount,
171 java.util.Date publishDate, java.util.Date expirationDate, int start,
172 int end) throws com.liferay.portal.SystemException {
173 return _tagsAssetLocalService.getAssets(groupId, classNameIds,
174 entryIds, notEntryIds, andOperator, orderByCol1, orderByCol2,
175 orderByType1, orderByType2, excludeZeroViewCount, publishDate,
176 expirationDate, start, end);
177 }
178
179 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
180 long[] entryIds, long[] notEntryIds, boolean andOperator,
181 boolean excludeZeroViewCount, java.util.Date publishDate,
182 java.util.Date expirationDate, int start, int end)
183 throws com.liferay.portal.SystemException {
184 return _tagsAssetLocalService.getAssets(entryIds, notEntryIds,
185 andOperator, excludeZeroViewCount, publishDate, expirationDate,
186 start, end);
187 }
188
189 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
190 long[] entryIds, long[] notEntryIds, boolean andOperator,
191 boolean excludeZeroViewCount, int start, int end)
192 throws com.liferay.portal.SystemException {
193 return _tagsAssetLocalService.getAssets(entryIds, notEntryIds,
194 andOperator, excludeZeroViewCount, start, end);
195 }
196
197 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getAssets(
198 long[] entryIds, long[] notEntryIds, boolean andOperator,
199 java.lang.String orderByCol1, java.lang.String orderByCol2,
200 java.lang.String orderByType1, java.lang.String orderByType2,
201 boolean excludeZeroViewCount, java.util.Date publishDate,
202 java.util.Date expirationDate, int start, int end)
203 throws com.liferay.portal.SystemException {
204 return _tagsAssetLocalService.getAssets(entryIds, notEntryIds,
205 andOperator, orderByCol1, orderByCol2, orderByType1, orderByType2,
206 excludeZeroViewCount, publishDate, expirationDate, start, end);
207 }
208
209 public int getAssetsCount(long groupId, long[] entryIds,
210 long[] notEntryIds, boolean andOperator, boolean excludeZeroViewCount)
211 throws com.liferay.portal.SystemException {
212 return _tagsAssetLocalService.getAssetsCount(groupId, entryIds,
213 notEntryIds, andOperator, excludeZeroViewCount);
214 }
215
216 public int getAssetsCount(long groupId, long[] classNameIds,
217 long[] entryIds, long[] notEntryIds, boolean andOperator,
218 boolean excludeZeroViewCount, java.util.Date publishDate,
219 java.util.Date expirationDate)
220 throws com.liferay.portal.SystemException {
221 return _tagsAssetLocalService.getAssetsCount(groupId, classNameIds,
222 entryIds, notEntryIds, andOperator, excludeZeroViewCount,
223 publishDate, expirationDate);
224 }
225
226 public int getAssetsCount(long[] entryIds, long[] notEntryIds,
227 boolean andOperator, boolean excludeZeroViewCount)
228 throws com.liferay.portal.SystemException {
229 return _tagsAssetLocalService.getAssetsCount(entryIds, notEntryIds,
230 andOperator, excludeZeroViewCount);
231 }
232
233 public int getAssetsCount(long[] entryIds, long[] notEntryIds,
234 boolean andOperator, boolean excludeZeroViewCount,
235 java.util.Date publishDate, java.util.Date expirationDate)
236 throws com.liferay.portal.SystemException {
237 return _tagsAssetLocalService.getAssetsCount(entryIds, notEntryIds,
238 andOperator, excludeZeroViewCount, publishDate, expirationDate);
239 }
240
241 public com.liferay.portlet.tags.model.TagsAssetType[] getAssetTypes(
242 java.lang.String languageId) {
243 return _tagsAssetLocalService.getAssetTypes(languageId);
244 }
245
246 public com.liferay.portlet.tags.model.TagsAssetDisplay[] getCompanyAssetDisplays(
247 long companyId, int start, int end, java.lang.String languageId)
248 throws com.liferay.portal.SystemException {
249 return _tagsAssetLocalService.getCompanyAssetDisplays(companyId, start,
250 end, languageId);
251 }
252
253 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getCompanyAssets(
254 long companyId, int start, int end)
255 throws com.liferay.portal.SystemException {
256 return _tagsAssetLocalService.getCompanyAssets(companyId, start, end);
257 }
258
259 public int getCompanyAssetsCount(long companyId)
260 throws com.liferay.portal.SystemException {
261 return _tagsAssetLocalService.getCompanyAssetsCount(companyId);
262 }
263
264 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getTopViewedAssets(
265 java.lang.String className, boolean asc, int start, int end)
266 throws com.liferay.portal.SystemException {
267 return _tagsAssetLocalService.getTopViewedAssets(className, asc, start,
268 end);
269 }
270
271 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getTopViewedAssets(
272 java.lang.String[] className, boolean asc, int start, int end)
273 throws com.liferay.portal.SystemException {
274 return _tagsAssetLocalService.getTopViewedAssets(className, asc, start,
275 end);
276 }
277
278 public com.liferay.portlet.tags.model.TagsAsset incrementViewCounter(
279 java.lang.String className, long classPK)
280 throws com.liferay.portal.SystemException {
281 return _tagsAssetLocalService.incrementViewCounter(className, classPK);
282 }
283
284 public com.liferay.portal.kernel.search.Hits search(long companyId,
285 java.lang.String portletId, java.lang.String keywords, int start,
286 int end) throws com.liferay.portal.SystemException {
287 return _tagsAssetLocalService.search(companyId, portletId, keywords,
288 start, end);
289 }
290
291 public com.liferay.portlet.tags.model.TagsAssetDisplay[] searchAssetDisplays(
292 long companyId, java.lang.String portletId, java.lang.String keywords,
293 java.lang.String languageId, int start, int end)
294 throws com.liferay.portal.SystemException {
295 return _tagsAssetLocalService.searchAssetDisplays(companyId, portletId,
296 keywords, languageId, start, end);
297 }
298
299 public int searchAssetDisplaysCount(long companyId,
300 java.lang.String portletId, java.lang.String keywords,
301 java.lang.String languageId) throws com.liferay.portal.SystemException {
302 return _tagsAssetLocalService.searchAssetDisplaysCount(companyId,
303 portletId, keywords, languageId);
304 }
305
306 public com.liferay.portlet.tags.model.TagsAsset updateAsset(long userId,
307 long groupId, java.lang.String className, long classPK,
308 java.lang.String[] categoryNames, java.lang.String[] entryNames)
309 throws com.liferay.portal.PortalException,
310 com.liferay.portal.SystemException {
311 return _tagsAssetLocalService.updateAsset(userId, groupId, className,
312 classPK, categoryNames, entryNames);
313 }
314
315 public com.liferay.portlet.tags.model.TagsAsset updateAsset(long userId,
316 long groupId, java.lang.String className, long classPK,
317 java.lang.String[] categoryNames, java.lang.String[] entryNames,
318 boolean visible, java.util.Date startDate, java.util.Date endDate,
319 java.util.Date publishDate, java.util.Date expirationDate,
320 java.lang.String mimeType, java.lang.String title,
321 java.lang.String description, java.lang.String summary,
322 java.lang.String url, int height, int width, java.lang.Integer priority)
323 throws com.liferay.portal.PortalException,
324 com.liferay.portal.SystemException {
325 return _tagsAssetLocalService.updateAsset(userId, groupId, className,
326 classPK, categoryNames, entryNames, visible, startDate, endDate,
327 publishDate, expirationDate, mimeType, title, description, summary,
328 url, height, width, priority);
329 }
330
331 public com.liferay.portlet.tags.model.TagsAsset updateAsset(long userId,
332 long groupId, java.lang.String className, long classPK,
333 java.lang.String[] categoryNames, java.lang.String[] entryNames,
334 boolean visible, java.util.Date startDate, java.util.Date endDate,
335 java.util.Date publishDate, java.util.Date expirationDate,
336 java.lang.String mimeType, java.lang.String title,
337 java.lang.String description, java.lang.String summary,
338 java.lang.String url, int height, int width,
339 java.lang.Integer priority, boolean sync)
340 throws com.liferay.portal.PortalException,
341 com.liferay.portal.SystemException {
342 return _tagsAssetLocalService.updateAsset(userId, groupId, className,
343 classPK, categoryNames, entryNames, visible, startDate, endDate,
344 publishDate, expirationDate, mimeType, title, description, summary,
345 url, height, width, priority, sync);
346 }
347
348 public com.liferay.portlet.tags.model.TagsAsset updateVisible(
349 java.lang.String className, long classPK, boolean visible)
350 throws com.liferay.portal.PortalException,
351 com.liferay.portal.SystemException {
352 return _tagsAssetLocalService.updateVisible(className, classPK, visible);
353 }
354
355 public void validate(java.lang.String className,
356 java.lang.String[] entryNames)
357 throws com.liferay.portal.PortalException {
358 _tagsAssetLocalService.validate(className, entryNames);
359 }
360
361 public TagsAssetLocalService getWrappedTagsAssetLocalService() {
362 return _tagsAssetLocalService;
363 }
364
365 private TagsAssetLocalService _tagsAssetLocalService;
366 }