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