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