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