001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.asset.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link AssetEntryLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see AssetEntryLocalService
026     * @generated
027     */
028    @ProviderType
029    public class AssetEntryLocalServiceWrapper implements AssetEntryLocalService,
030            ServiceWrapper<AssetEntryLocalService> {
031            public AssetEntryLocalServiceWrapper(
032                    AssetEntryLocalService assetEntryLocalService) {
033                    _assetEntryLocalService = assetEntryLocalService;
034            }
035    
036            @Override
037            public void addAssetCategoryAssetEntries(long categoryId,
038                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
039                    _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
040                            AssetEntries);
041            }
042    
043            @Override
044            public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
045                    _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
046                            entryIds);
047            }
048    
049            @Override
050            public void addAssetCategoryAssetEntry(long categoryId,
051                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
052                    _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
053                            assetEntry);
054            }
055    
056            @Override
057            public void addAssetCategoryAssetEntry(long categoryId, long entryId) {
058                    _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
059            }
060    
061            /**
062            * Adds the asset entry to the database. Also notifies the appropriate model listeners.
063            *
064            * @param assetEntry the asset entry
065            * @return the asset entry that was added
066            */
067            @Override
068            public com.liferay.portlet.asset.model.AssetEntry addAssetEntry(
069                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
070                    return _assetEntryLocalService.addAssetEntry(assetEntry);
071            }
072    
073            @Override
074            public void addAssetTagAssetEntries(long tagId,
075                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
076                    _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
077            }
078    
079            @Override
080            public void addAssetTagAssetEntries(long tagId, long[] entryIds) {
081                    _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
082            }
083    
084            @Override
085            public void addAssetTagAssetEntry(long tagId,
086                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
087                    _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
088            }
089    
090            @Override
091            public void addAssetTagAssetEntry(long tagId, long entryId) {
092                    _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
093            }
094    
095            @Override
096            public void clearAssetCategoryAssetEntries(long categoryId) {
097                    _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
098            }
099    
100            @Override
101            public void clearAssetTagAssetEntries(long tagId) {
102                    _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
103            }
104    
105            /**
106            * Creates a new asset entry with the primary key. Does not add the asset entry to the database.
107            *
108            * @param entryId the primary key for the new asset entry
109            * @return the new asset entry
110            */
111            @Override
112            public com.liferay.portlet.asset.model.AssetEntry createAssetEntry(
113                    long entryId) {
114                    return _assetEntryLocalService.createAssetEntry(entryId);
115            }
116    
117            @Override
118            public void deleteAssetCategoryAssetEntries(long categoryId,
119                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
120                    _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
121                            AssetEntries);
122            }
123    
124            @Override
125            public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
126                    _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
127                            entryIds);
128            }
129    
130            @Override
131            public void deleteAssetCategoryAssetEntry(long categoryId,
132                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
133                    _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
134                            assetEntry);
135            }
136    
137            @Override
138            public void deleteAssetCategoryAssetEntry(long categoryId, long entryId) {
139                    _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
140                            entryId);
141            }
142    
143            /**
144            * Deletes the asset entry from the database. Also notifies the appropriate model listeners.
145            *
146            * @param assetEntry the asset entry
147            * @return the asset entry that was removed
148            */
149            @Override
150            public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
151                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
152                    return _assetEntryLocalService.deleteAssetEntry(assetEntry);
153            }
154    
155            /**
156            * Deletes the asset entry with the primary key from the database. Also notifies the appropriate model listeners.
157            *
158            * @param entryId the primary key of the asset entry
159            * @return the asset entry that was removed
160            * @throws PortalException if a asset entry with the primary key could not be found
161            */
162            @Override
163            public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
164                    long entryId)
165                    throws com.liferay.portal.kernel.exception.PortalException {
166                    return _assetEntryLocalService.deleteAssetEntry(entryId);
167            }
168    
169            @Override
170            public void deleteAssetTagAssetEntries(long tagId,
171                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
172                    _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
173            }
174    
175            @Override
176            public void deleteAssetTagAssetEntries(long tagId, long[] entryIds) {
177                    _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
178            }
179    
180            @Override
181            public void deleteAssetTagAssetEntry(long tagId,
182                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
183                    _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
184            }
185    
186            @Override
187            public void deleteAssetTagAssetEntry(long tagId, long entryId) {
188                    _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
189            }
190    
191            @Override
192            public void deleteEntry(java.lang.String className, long classPK)
193                    throws com.liferay.portal.kernel.exception.PortalException {
194                    _assetEntryLocalService.deleteEntry(className, classPK);
195            }
196    
197            @Override
198            public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
199                    throws com.liferay.portal.kernel.exception.PortalException {
200                    _assetEntryLocalService.deleteEntry(entry);
201            }
202    
203            @Override
204            public void deleteEntry(long entryId)
205                    throws com.liferay.portal.kernel.exception.PortalException {
206                    _assetEntryLocalService.deleteEntry(entryId);
207            }
208    
209            @Override
210            public void deleteGroupEntries(long groupId)
211                    throws com.liferay.portal.kernel.exception.PortalException {
212                    _assetEntryLocalService.deleteGroupEntries(groupId);
213            }
214    
215            /**
216            * @throws PortalException
217            */
218            @Override
219            public com.liferay.portal.model.PersistedModel deletePersistedModel(
220                    com.liferay.portal.model.PersistedModel persistedModel)
221                    throws com.liferay.portal.kernel.exception.PortalException {
222                    return _assetEntryLocalService.deletePersistedModel(persistedModel);
223            }
224    
225            @Override
226            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
227                    return _assetEntryLocalService.dynamicQuery();
228            }
229    
230            /**
231            * Performs a dynamic query on the database and returns the matching rows.
232            *
233            * @param dynamicQuery the dynamic query
234            * @return the matching rows
235            */
236            @Override
237            public <T> java.util.List<T> dynamicQuery(
238                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
239                    return _assetEntryLocalService.dynamicQuery(dynamicQuery);
240            }
241    
242            /**
243            * Performs a dynamic query on the database and returns a range of the matching rows.
244            *
245            * <p>
246            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
247            * </p>
248            *
249            * @param dynamicQuery the dynamic query
250            * @param start the lower bound of the range of model instances
251            * @param end the upper bound of the range of model instances (not inclusive)
252            * @return the range of matching rows
253            */
254            @Override
255            public <T> java.util.List<T> dynamicQuery(
256                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
257                    int end) {
258                    return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end);
259            }
260    
261            /**
262            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
263            *
264            * <p>
265            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
266            * </p>
267            *
268            * @param dynamicQuery the dynamic query
269            * @param start the lower bound of the range of model instances
270            * @param end the upper bound of the range of model instances (not inclusive)
271            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
272            * @return the ordered range of matching rows
273            */
274            @Override
275            public <T> java.util.List<T> dynamicQuery(
276                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
277                    int end,
278                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
279                    return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end,
280                            orderByComparator);
281            }
282    
283            /**
284            * Returns the number of rows matching the dynamic query.
285            *
286            * @param dynamicQuery the dynamic query
287            * @return the number of rows matching the dynamic query
288            */
289            @Override
290            public long dynamicQueryCount(
291                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
292                    return _assetEntryLocalService.dynamicQueryCount(dynamicQuery);
293            }
294    
295            /**
296            * Returns the number of rows matching the dynamic query.
297            *
298            * @param dynamicQuery the dynamic query
299            * @param projection the projection to apply to the query
300            * @return the number of rows matching the dynamic query
301            */
302            @Override
303            public long dynamicQueryCount(
304                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
305                    com.liferay.portal.kernel.dao.orm.Projection projection) {
306                    return _assetEntryLocalService.dynamicQueryCount(dynamicQuery,
307                            projection);
308            }
309    
310            @Override
311            public com.liferay.portlet.asset.model.AssetEntry fetchAssetEntry(
312                    long entryId) {
313                    return _assetEntryLocalService.fetchAssetEntry(entryId);
314            }
315    
316            @Override
317            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
318                    java.lang.String className, long classPK) {
319                    return _assetEntryLocalService.fetchEntry(className, classPK);
320            }
321    
322            @Override
323            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId) {
324                    return _assetEntryLocalService.fetchEntry(entryId);
325            }
326    
327            @Override
328            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
329                    java.lang.String classUuid) {
330                    return _assetEntryLocalService.fetchEntry(groupId, classUuid);
331            }
332    
333            @Override
334            public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
335                    return _assetEntryLocalService.getActionableDynamicQuery();
336            }
337    
338            @Override
339            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
340                    long entryId)
341                    throws com.liferay.portal.kernel.exception.PortalException {
342                    return _assetEntryLocalService.getAncestorEntries(entryId);
343            }
344    
345            @Override
346            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
347                    long categoryId) {
348                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
349            }
350    
351            @Override
352            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
353                    long categoryId, int start, int end) {
354                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
355                            start, end);
356            }
357    
358            @Override
359            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
360                    long categoryId, int start, int end,
361                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetEntry> orderByComparator) {
362                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
363                            start, end, orderByComparator);
364            }
365    
366            @Override
367            public int getAssetCategoryAssetEntriesCount(long categoryId) {
368                    return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
369            }
370    
371            /**
372            * Returns the categoryIds of the asset categories associated with the asset entry.
373            *
374            * @param entryId the entryId of the asset entry
375            * @return long[] the categoryIds of asset categories associated with the asset entry
376            */
377            @Override
378            public long[] getAssetCategoryPrimaryKeys(long entryId) {
379                    return _assetEntryLocalService.getAssetCategoryPrimaryKeys(entryId);
380            }
381    
382            /**
383            * Returns a range of all the asset entries.
384            *
385            * <p>
386            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
387            * </p>
388            *
389            * @param start the lower bound of the range of asset entries
390            * @param end the upper bound of the range of asset entries (not inclusive)
391            * @return the range of asset entries
392            */
393            @Override
394            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetEntries(
395                    int start, int end) {
396                    return _assetEntryLocalService.getAssetEntries(start, end);
397            }
398    
399            /**
400            * Returns the number of asset entries.
401            *
402            * @return the number of asset entries
403            */
404            @Override
405            public int getAssetEntriesCount() {
406                    return _assetEntryLocalService.getAssetEntriesCount();
407            }
408    
409            /**
410            * Returns the asset entry with the primary key.
411            *
412            * @param entryId the primary key of the asset entry
413            * @return the asset entry
414            * @throws PortalException if a asset entry with the primary key could not be found
415            */
416            @Override
417            public com.liferay.portlet.asset.model.AssetEntry getAssetEntry(
418                    long entryId)
419                    throws com.liferay.portal.kernel.exception.PortalException {
420                    return _assetEntryLocalService.getAssetEntry(entryId);
421            }
422    
423            @Override
424            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
425                    long tagId) {
426                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
427            }
428    
429            @Override
430            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
431                    long tagId, int start, int end) {
432                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
433            }
434    
435            @Override
436            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
437                    long tagId, int start, int end,
438                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetEntry> orderByComparator) {
439                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
440                            end, orderByComparator);
441            }
442    
443            @Override
444            public int getAssetTagAssetEntriesCount(long tagId) {
445                    return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
446            }
447    
448            /**
449            * Returns the tagIds of the asset tags associated with the asset entry.
450            *
451            * @param entryId the entryId of the asset entry
452            * @return long[] the tagIds of asset tags associated with the asset entry
453            */
454            @Override
455            public long[] getAssetTagPrimaryKeys(long entryId) {
456                    return _assetEntryLocalService.getAssetTagPrimaryKeys(entryId);
457            }
458    
459            /**
460            * Returns the Spring bean ID for this bean.
461            *
462            * @return the Spring bean ID for this bean
463            */
464            @Override
465            public java.lang.String getBeanIdentifier() {
466                    return _assetEntryLocalService.getBeanIdentifier();
467            }
468    
469            @Override
470            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
471                    long entryId)
472                    throws com.liferay.portal.kernel.exception.PortalException {
473                    return _assetEntryLocalService.getChildEntries(entryId);
474            }
475    
476            @Override
477            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
478                    long companyId, int start, int end) {
479                    return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
480            }
481    
482            @Override
483            public int getCompanyEntriesCount(long companyId) {
484                    return _assetEntryLocalService.getCompanyEntriesCount(companyId);
485            }
486    
487            @Override
488            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
489                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
490                    return _assetEntryLocalService.getEntries(entryQuery);
491            }
492    
493            @Override
494            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
495                    long[] groupIds, long[] classNameIds, java.lang.String keywords,
496                    java.lang.String userName, java.lang.String title,
497                    java.lang.String description, java.lang.Boolean listable,
498                    boolean advancedSearch, boolean andOperator, int start, int end,
499                    java.lang.String orderByCol1, java.lang.String orderByCol2,
500                    java.lang.String orderByType1, java.lang.String orderByType2) {
501                    return _assetEntryLocalService.getEntries(groupIds, classNameIds,
502                            keywords, userName, title, description, listable, advancedSearch,
503                            andOperator, start, end, orderByCol1, orderByCol2, orderByType1,
504                            orderByType2);
505            }
506    
507            @Override
508            public int getEntriesCount(
509                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
510                    return _assetEntryLocalService.getEntriesCount(entryQuery);
511            }
512    
513            @Override
514            public int getEntriesCount(long[] groupIds, long[] classNameIds,
515                    java.lang.String keywords, java.lang.String userName,
516                    java.lang.String title, java.lang.String description,
517                    java.lang.Boolean listable, boolean advancedSearch, boolean andOperator) {
518                    return _assetEntryLocalService.getEntriesCount(groupIds, classNameIds,
519                            keywords, userName, title, description, listable, advancedSearch,
520                            andOperator);
521            }
522    
523            @Override
524            public com.liferay.portlet.asset.model.AssetEntry getEntry(
525                    java.lang.String className, long classPK)
526                    throws com.liferay.portal.kernel.exception.PortalException {
527                    return _assetEntryLocalService.getEntry(className, classPK);
528            }
529    
530            @Override
531            public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
532                    throws com.liferay.portal.kernel.exception.PortalException {
533                    return _assetEntryLocalService.getEntry(entryId);
534            }
535    
536            @Override
537            public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
538                    java.lang.String classUuid)
539                    throws com.liferay.portal.kernel.exception.PortalException {
540                    return _assetEntryLocalService.getEntry(groupId, classUuid);
541            }
542    
543            @Override
544            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getGroupEntries(
545                    long groupId) {
546                    return _assetEntryLocalService.getGroupEntries(groupId);
547            }
548    
549            @Override
550            public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
551                    throws com.liferay.portal.kernel.exception.PortalException {
552                    return _assetEntryLocalService.getNextEntry(entryId);
553            }
554    
555            @Override
556            public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
557                    long entryId)
558                    throws com.liferay.portal.kernel.exception.PortalException {
559                    return _assetEntryLocalService.getParentEntry(entryId);
560            }
561    
562            @Override
563            public com.liferay.portal.model.PersistedModel getPersistedModel(
564                    java.io.Serializable primaryKeyObj)
565                    throws com.liferay.portal.kernel.exception.PortalException {
566                    return _assetEntryLocalService.getPersistedModel(primaryKeyObj);
567            }
568    
569            @Override
570            public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
571                    long entryId)
572                    throws com.liferay.portal.kernel.exception.PortalException {
573                    return _assetEntryLocalService.getPreviousEntry(entryId);
574            }
575    
576            @Override
577            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
578                    java.lang.String[] className, boolean asc, int start, int end) {
579                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
580                            start, end);
581            }
582    
583            @Override
584            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
585                    java.lang.String className, boolean asc, int start, int end) {
586                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
587                            start, end);
588            }
589    
590            @Override
591            public boolean hasAssetCategoryAssetEntries(long categoryId) {
592                    return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
593            }
594    
595            @Override
596            public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId) {
597                    return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
598                            entryId);
599            }
600    
601            @Override
602            public boolean hasAssetTagAssetEntries(long tagId) {
603                    return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
604            }
605    
606            @Override
607            public boolean hasAssetTagAssetEntry(long tagId, long entryId) {
608                    return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
609            }
610    
611            @Override
612            public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
613                    long userId, java.lang.String className, long classPK)
614                    throws com.liferay.portal.kernel.exception.PortalException {
615                    return _assetEntryLocalService.incrementViewCounter(userId, className,
616                            classPK);
617            }
618    
619            @Override
620            public void incrementViewCounter(long userId, java.lang.String className,
621                    long classPK, int increment) {
622                    _assetEntryLocalService.incrementViewCounter(userId, className,
623                            classPK, increment);
624            }
625    
626            @Override
627            public void reindex(
628                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
629                    throws com.liferay.portal.kernel.exception.PortalException {
630                    _assetEntryLocalService.reindex(entries);
631            }
632    
633            /**
634            * @deprecated As of 6.2.0, replaced by {@link #search(long, long[], long,
635            String, String, int, int, int)}
636            */
637            @Deprecated
638            @Override
639            public com.liferay.portal.kernel.search.Hits search(long companyId,
640                    long[] groupIds, java.lang.String className, java.lang.String keywords,
641                    int start, int end) {
642                    return _assetEntryLocalService.search(companyId, groupIds, className,
643                            keywords, start, end);
644            }
645    
646            @Override
647            public com.liferay.portal.kernel.search.Hits search(long companyId,
648                    long[] groupIds, long userId, java.lang.String className,
649                    long classTypeId, java.lang.String keywords, boolean showNonindexable,
650                    int status, int start, int end) {
651                    return _assetEntryLocalService.search(companyId, groupIds, userId,
652                            className, classTypeId, keywords, showNonindexable, status, start,
653                            end);
654            }
655    
656            @Override
657            public com.liferay.portal.kernel.search.Hits search(long companyId,
658                    long[] groupIds, long userId, java.lang.String className,
659                    long classTypeId, java.lang.String keywords, boolean showNonindexable,
660                    int[] statuses, int start, int end) {
661                    return _assetEntryLocalService.search(companyId, groupIds, userId,
662                            className, classTypeId, keywords, showNonindexable, statuses,
663                            start, end);
664            }
665    
666            @Override
667            public com.liferay.portal.kernel.search.Hits search(long companyId,
668                    long[] groupIds, long userId, java.lang.String className,
669                    long classTypeId, java.lang.String keywords, int status, int start,
670                    int end) {
671                    return _assetEntryLocalService.search(companyId, groupIds, userId,
672                            className, classTypeId, keywords, status, start, end);
673            }
674    
675            @Override
676            public com.liferay.portal.kernel.search.Hits search(long companyId,
677                    long[] groupIds, long userId, java.lang.String className,
678                    long classTypeId, java.lang.String userName, java.lang.String title,
679                    java.lang.String description, java.lang.String assetCategoryIds,
680                    java.lang.String assetTagNames, boolean showNonindexable, int status,
681                    boolean andSearch, int start, int end) {
682                    return _assetEntryLocalService.search(companyId, groupIds, userId,
683                            className, classTypeId, userName, title, description,
684                            assetCategoryIds, assetTagNames, showNonindexable, status,
685                            andSearch, start, end);
686            }
687    
688            @Override
689            public com.liferay.portal.kernel.search.Hits search(long companyId,
690                    long[] groupIds, long userId, java.lang.String className,
691                    long classTypeId, java.lang.String userName, java.lang.String title,
692                    java.lang.String description, java.lang.String assetCategoryIds,
693                    java.lang.String assetTagNames, boolean showNonindexable,
694                    int[] statuses, boolean andSearch, int start, int end) {
695                    return _assetEntryLocalService.search(companyId, groupIds, userId,
696                            className, classTypeId, userName, title, description,
697                            assetCategoryIds, assetTagNames, showNonindexable, statuses,
698                            andSearch, start, end);
699            }
700    
701            @Override
702            public com.liferay.portal.kernel.search.Hits search(long companyId,
703                    long[] groupIds, long userId, java.lang.String className,
704                    long classTypeId, java.lang.String userName, java.lang.String title,
705                    java.lang.String description, java.lang.String assetCategoryIds,
706                    java.lang.String assetTagNames, int status, boolean andSearch,
707                    int start, int end) {
708                    return _assetEntryLocalService.search(companyId, groupIds, userId,
709                            className, classTypeId, userName, title, description,
710                            assetCategoryIds, assetTagNames, status, andSearch, start, end);
711            }
712    
713            /**
714            * @deprecated As of 6.2.0, replaced by {@link #search(long, long[], long,
715            String, String, int, int, int)}
716            */
717            @Deprecated
718            @Override
719            public com.liferay.portal.kernel.search.Hits search(long companyId,
720                    long[] groupIds, long userId, java.lang.String className,
721                    java.lang.String keywords, int start, int end) {
722                    return _assetEntryLocalService.search(companyId, groupIds, userId,
723                            className, keywords, start, end);
724            }
725    
726            @Override
727            public com.liferay.portal.kernel.search.Hits search(long companyId,
728                    long[] groupIds, long userId, java.lang.String className,
729                    java.lang.String keywords, int status, int start, int end) {
730                    return _assetEntryLocalService.search(companyId, groupIds, userId,
731                            className, keywords, status, start, end);
732            }
733    
734            /**
735            * @deprecated As of 6.2.0, replaced by {@link #search(long, long[], long,
736            String, String, String, String, String, String, int, boolean,
737            int, int)}
738            */
739            @Deprecated
740            @Override
741            public com.liferay.portal.kernel.search.Hits search(long companyId,
742                    long[] groupIds, long userId, java.lang.String className,
743                    java.lang.String userName, java.lang.String title,
744                    java.lang.String description, java.lang.String assetCategoryIds,
745                    java.lang.String assetTagNames, boolean andSearch, int start, int end) {
746                    return _assetEntryLocalService.search(companyId, groupIds, userId,
747                            className, userName, title, description, assetCategoryIds,
748                            assetTagNames, andSearch, start, end);
749            }
750    
751            @Override
752            public com.liferay.portal.kernel.search.Hits search(long companyId,
753                    long[] groupIds, long userId, java.lang.String className,
754                    java.lang.String userName, java.lang.String title,
755                    java.lang.String description, java.lang.String assetCategoryIds,
756                    java.lang.String assetTagNames, int status, boolean andSearch,
757                    int start, int end) {
758                    return _assetEntryLocalService.search(companyId, groupIds, userId,
759                            className, userName, title, description, assetCategoryIds,
760                            assetTagNames, status, andSearch, start, end);
761            }
762    
763            @Override
764            public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
765                    _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
766                            entryIds);
767            }
768    
769            @Override
770            public void setAssetTagAssetEntries(long tagId, long[] entryIds) {
771                    _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
772            }
773    
774            /**
775            * Sets the Spring bean ID for this bean.
776            *
777            * @param beanIdentifier the Spring bean ID for this bean
778            */
779            @Override
780            public void setBeanIdentifier(java.lang.String beanIdentifier) {
781                    _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
782            }
783    
784            /**
785            * Updates the asset entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
786            *
787            * @param assetEntry the asset entry
788            * @return the asset entry that was updated
789            */
790            @Override
791            public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
792                    com.liferay.portlet.asset.model.AssetEntry assetEntry) {
793                    return _assetEntryLocalService.updateAssetEntry(assetEntry);
794            }
795    
796            @Override
797            public com.liferay.portlet.asset.model.AssetEntry updateEntry(
798                    java.lang.String className, long classPK, java.util.Date publishDate,
799                    java.util.Date expirationDate, boolean visible)
800                    throws com.liferay.portal.kernel.exception.PortalException {
801                    return _assetEntryLocalService.updateEntry(className, classPK,
802                            publishDate, expirationDate, visible);
803            }
804    
805            @Override
806            public com.liferay.portlet.asset.model.AssetEntry updateEntry(
807                    java.lang.String className, long classPK, java.util.Date publishDate,
808                    boolean visible)
809                    throws com.liferay.portal.kernel.exception.PortalException {
810                    return _assetEntryLocalService.updateEntry(className, classPK,
811                            publishDate, visible);
812            }
813    
814            @Override
815            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
816                    long groupId, java.lang.String className, long classPK,
817                    long[] categoryIds, java.lang.String[] tagNames)
818                    throws com.liferay.portal.kernel.exception.PortalException {
819                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
820                            classPK, categoryIds, tagNames);
821            }
822    
823            /**
824            * @deprecated As of 6.2.0, replaced by {@link #updateEntry(long, long,
825            Date, Date, String, long, String, long, long[], String[],
826            boolean, Date, Date, Date, String, String, String, String,
827            String, String, int, int, Integer, boolean)}
828            */
829            @Deprecated
830            @Override
831            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
832                    long groupId, java.lang.String className, long classPK,
833                    java.lang.String classUuid, long classTypeId, long[] categoryIds,
834                    java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
835                    java.util.Date endDate, java.util.Date expirationDate,
836                    java.lang.String mimeType, java.lang.String title,
837                    java.lang.String description, java.lang.String summary,
838                    java.lang.String url, java.lang.String layoutUuid, int height,
839                    int width, java.lang.Integer priority, boolean sync)
840                    throws com.liferay.portal.kernel.exception.PortalException {
841                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
842                            classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
843                            startDate, endDate, expirationDate, mimeType, title, description,
844                            summary, url, layoutUuid, height, width, priority, sync);
845            }
846    
847            /**
848            * @deprecated As of 6.2.0, replaced by {@link #updateEntry(long, long,
849            String, long, String, long, long[], String[], boolean, Date,
850            Date, Date, String, String, String, String, String, String,
851            int, int, Integer, boolean)}
852            */
853            @Deprecated
854            @Override
855            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
856                    long groupId, java.lang.String className, long classPK,
857                    java.lang.String classUuid, long classTypeId, long[] categoryIds,
858                    java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
859                    java.util.Date endDate, java.util.Date publishDate,
860                    java.util.Date expirationDate, java.lang.String mimeType,
861                    java.lang.String title, java.lang.String description,
862                    java.lang.String summary, java.lang.String url,
863                    java.lang.String layoutUuid, int height, int width,
864                    java.lang.Integer priority, boolean sync)
865                    throws com.liferay.portal.kernel.exception.PortalException {
866                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
867                            classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
868                            startDate, endDate, publishDate, expirationDate, mimeType, title,
869                            description, summary, url, layoutUuid, height, width, priority, sync);
870            }
871    
872            @Override
873            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
874                    long groupId, java.util.Date createDate, java.util.Date modifiedDate,
875                    java.lang.String className, long classPK, java.lang.String classUuid,
876                    long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
877                    boolean visible, java.util.Date startDate, java.util.Date endDate,
878                    java.util.Date expirationDate, java.lang.String mimeType,
879                    java.lang.String title, java.lang.String description,
880                    java.lang.String summary, java.lang.String url,
881                    java.lang.String layoutUuid, int height, int width,
882                    java.lang.Double priority)
883                    throws com.liferay.portal.kernel.exception.PortalException {
884                    return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
885                            modifiedDate, className, classPK, classUuid, classTypeId,
886                            categoryIds, tagNames, visible, startDate, endDate, expirationDate,
887                            mimeType, title, description, summary, url, layoutUuid, height,
888                            width, priority);
889            }
890    
891            /**
892            * @deprecated As of 7.0.0, replaced by {@link #updateEntry(long, long,
893            Date, Date, String, long, String, long, long[], String[],
894            boolean, Date, Date, Date, String, String, String, String,
895            String, String, int, int, Double)}
896            */
897            @Deprecated
898            @Override
899            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
900                    long groupId, java.util.Date createDate, java.util.Date modifiedDate,
901                    java.lang.String className, long classPK, java.lang.String classUuid,
902                    long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
903                    boolean visible, java.util.Date startDate, java.util.Date endDate,
904                    java.util.Date expirationDate, java.lang.String mimeType,
905                    java.lang.String title, java.lang.String description,
906                    java.lang.String summary, java.lang.String url,
907                    java.lang.String layoutUuid, int height, int width,
908                    java.lang.Integer priority, boolean sync)
909                    throws com.liferay.portal.kernel.exception.PortalException {
910                    return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
911                            modifiedDate, className, classPK, classUuid, classTypeId,
912                            categoryIds, tagNames, visible, startDate, endDate, expirationDate,
913                            mimeType, title, description, summary, url, layoutUuid, height,
914                            width, priority, sync);
915            }
916    
917            @Override
918            public com.liferay.portlet.asset.model.AssetEntry updateVisible(
919                    java.lang.String className, long classPK, boolean visible)
920                    throws com.liferay.portal.kernel.exception.PortalException {
921                    return _assetEntryLocalService.updateVisible(className, classPK, visible);
922            }
923    
924            @Override
925            public com.liferay.portlet.asset.model.AssetEntry updateVisible(
926                    com.liferay.portlet.asset.model.AssetEntry entry, boolean visible)
927                    throws com.liferay.portal.kernel.exception.PortalException {
928                    return _assetEntryLocalService.updateVisible(entry, visible);
929            }
930    
931            /**
932            * @deprecated As of 7.0.0, replaced by {@link #validate(long, String, long,
933            long[], String[])}
934            */
935            @Deprecated
936            @Override
937            public void validate(long groupId, java.lang.String className,
938                    long[] categoryIds, java.lang.String[] tagNames)
939                    throws com.liferay.portal.kernel.exception.PortalException {
940                    _assetEntryLocalService.validate(groupId, className, categoryIds,
941                            tagNames);
942            }
943    
944            @Override
945            public void validate(long groupId, java.lang.String className,
946                    long classTypePK, long[] categoryIds, java.lang.String[] tagNames)
947                    throws com.liferay.portal.kernel.exception.PortalException {
948                    _assetEntryLocalService.validate(groupId, className, classTypePK,
949                            categoryIds, tagNames);
950            }
951    
952            /**
953             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
954             */
955            @Deprecated
956            public AssetEntryLocalService getWrappedAssetEntryLocalService() {
957                    return _assetEntryLocalService;
958            }
959    
960            /**
961             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
962             */
963            @Deprecated
964            public void setWrappedAssetEntryLocalService(
965                    AssetEntryLocalService assetEntryLocalService) {
966                    _assetEntryLocalService = assetEntryLocalService;
967            }
968    
969            @Override
970            public AssetEntryLocalService getWrappedService() {
971                    return _assetEntryLocalService;
972            }
973    
974            @Override
975            public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
976                    _assetEntryLocalService = assetEntryLocalService;
977            }
978    
979            private AssetEntryLocalService _assetEntryLocalService;
980    }