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