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.
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.
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.
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            * Updates the asset entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
234            *
235            * @param assetEntry the asset entry
236            * @param merge whether to merge the asset entry with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
237            * @return the asset entry that was updated
238            * @throws SystemException if a system exception occurred
239            */
240            public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
241                    com.liferay.portlet.asset.model.AssetEntry assetEntry, boolean merge)
242                    throws com.liferay.portal.kernel.exception.SystemException {
243                    return _assetEntryLocalService.updateAssetEntry(assetEntry, merge);
244            }
245    
246            /**
247            * @throws SystemException if a system exception occurred
248            */
249            public void addAssetCategoryAssetEntry(long categoryId, long entryId)
250                    throws com.liferay.portal.kernel.exception.SystemException {
251                    _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
252            }
253    
254            /**
255            * @throws SystemException if a system exception occurred
256            */
257            public void addAssetCategoryAssetEntry(long categoryId,
258                    com.liferay.portlet.asset.model.AssetEntry assetEntry)
259                    throws com.liferay.portal.kernel.exception.SystemException {
260                    _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
261                            assetEntry);
262            }
263    
264            /**
265            * @throws SystemException if a system exception occurred
266            */
267            public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
268                    throws com.liferay.portal.kernel.exception.SystemException {
269                    _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
270                            entryIds);
271            }
272    
273            /**
274            * @throws SystemException if a system exception occurred
275            */
276            public void addAssetCategoryAssetEntries(long categoryId,
277                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
278                    throws com.liferay.portal.kernel.exception.SystemException {
279                    _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
280                            AssetEntries);
281            }
282    
283            /**
284            * @throws SystemException if a system exception occurred
285            */
286            public void clearAssetCategoryAssetEntries(long categoryId)
287                    throws com.liferay.portal.kernel.exception.SystemException {
288                    _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
289            }
290    
291            /**
292            * @throws SystemException if a system exception occurred
293            */
294            public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
295                    throws com.liferay.portal.kernel.exception.SystemException {
296                    _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
297                            entryId);
298            }
299    
300            /**
301            * @throws SystemException if a system exception occurred
302            */
303            public void deleteAssetCategoryAssetEntry(long categoryId,
304                    com.liferay.portlet.asset.model.AssetEntry assetEntry)
305                    throws com.liferay.portal.kernel.exception.SystemException {
306                    _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
307                            assetEntry);
308            }
309    
310            /**
311            * @throws SystemException if a system exception occurred
312            */
313            public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
314                    throws com.liferay.portal.kernel.exception.SystemException {
315                    _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
316                            entryIds);
317            }
318    
319            /**
320            * @throws SystemException if a system exception occurred
321            */
322            public void deleteAssetCategoryAssetEntries(long categoryId,
323                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
324                    throws com.liferay.portal.kernel.exception.SystemException {
325                    _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
326                            AssetEntries);
327            }
328    
329            /**
330            * @throws SystemException if a system exception occurred
331            */
332            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
333                    long categoryId)
334                    throws com.liferay.portal.kernel.exception.SystemException {
335                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
336            }
337    
338            /**
339            * @throws SystemException if a system exception occurred
340            */
341            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
342                    long categoryId, int start, int end)
343                    throws com.liferay.portal.kernel.exception.SystemException {
344                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
345                            start, end);
346            }
347    
348            /**
349            * @throws SystemException if a system exception occurred
350            */
351            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
352                    long categoryId, int start, int end,
353                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
354                    throws com.liferay.portal.kernel.exception.SystemException {
355                    return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
356                            start, end, orderByComparator);
357            }
358    
359            /**
360            * @throws SystemException if a system exception occurred
361            */
362            public int getAssetCategoryAssetEntriesCount(long categoryId)
363                    throws com.liferay.portal.kernel.exception.SystemException {
364                    return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
365            }
366    
367            /**
368            * @throws SystemException if a system exception occurred
369            */
370            public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
371                    throws com.liferay.portal.kernel.exception.SystemException {
372                    return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
373                            entryId);
374            }
375    
376            /**
377            * @throws SystemException if a system exception occurred
378            */
379            public boolean hasAssetCategoryAssetEntries(long categoryId)
380                    throws com.liferay.portal.kernel.exception.SystemException {
381                    return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
382            }
383    
384            /**
385            * @throws SystemException if a system exception occurred
386            */
387            public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
388                    throws com.liferay.portal.kernel.exception.SystemException {
389                    _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
390                            entryIds);
391            }
392    
393            /**
394            * @throws SystemException if a system exception occurred
395            */
396            public void addAssetTagAssetEntry(long tagId, long entryId)
397                    throws com.liferay.portal.kernel.exception.SystemException {
398                    _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
399            }
400    
401            /**
402            * @throws SystemException if a system exception occurred
403            */
404            public void addAssetTagAssetEntry(long tagId,
405                    com.liferay.portlet.asset.model.AssetEntry assetEntry)
406                    throws com.liferay.portal.kernel.exception.SystemException {
407                    _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
408            }
409    
410            /**
411            * @throws SystemException if a system exception occurred
412            */
413            public void addAssetTagAssetEntries(long tagId, long[] entryIds)
414                    throws com.liferay.portal.kernel.exception.SystemException {
415                    _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
416            }
417    
418            /**
419            * @throws SystemException if a system exception occurred
420            */
421            public void addAssetTagAssetEntries(long tagId,
422                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
423                    throws com.liferay.portal.kernel.exception.SystemException {
424                    _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
425            }
426    
427            /**
428            * @throws SystemException if a system exception occurred
429            */
430            public void clearAssetTagAssetEntries(long tagId)
431                    throws com.liferay.portal.kernel.exception.SystemException {
432                    _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
433            }
434    
435            /**
436            * @throws SystemException if a system exception occurred
437            */
438            public void deleteAssetTagAssetEntry(long tagId, long entryId)
439                    throws com.liferay.portal.kernel.exception.SystemException {
440                    _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
441            }
442    
443            /**
444            * @throws SystemException if a system exception occurred
445            */
446            public void deleteAssetTagAssetEntry(long tagId,
447                    com.liferay.portlet.asset.model.AssetEntry assetEntry)
448                    throws com.liferay.portal.kernel.exception.SystemException {
449                    _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
450            }
451    
452            /**
453            * @throws SystemException if a system exception occurred
454            */
455            public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
456                    throws com.liferay.portal.kernel.exception.SystemException {
457                    _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
458            }
459    
460            /**
461            * @throws SystemException if a system exception occurred
462            */
463            public void deleteAssetTagAssetEntries(long tagId,
464                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
465                    throws com.liferay.portal.kernel.exception.SystemException {
466                    _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
467            }
468    
469            /**
470            * @throws SystemException if a system exception occurred
471            */
472            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
473                    long tagId) throws com.liferay.portal.kernel.exception.SystemException {
474                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
475            }
476    
477            /**
478            * @throws SystemException if a system exception occurred
479            */
480            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
481                    long tagId, int start, int end)
482                    throws com.liferay.portal.kernel.exception.SystemException {
483                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
484            }
485    
486            /**
487            * @throws SystemException if a system exception occurred
488            */
489            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
490                    long tagId, int start, int end,
491                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
492                    throws com.liferay.portal.kernel.exception.SystemException {
493                    return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
494                            end, orderByComparator);
495            }
496    
497            /**
498            * @throws SystemException if a system exception occurred
499            */
500            public int getAssetTagAssetEntriesCount(long tagId)
501                    throws com.liferay.portal.kernel.exception.SystemException {
502                    return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
503            }
504    
505            /**
506            * @throws SystemException if a system exception occurred
507            */
508            public boolean hasAssetTagAssetEntry(long tagId, long entryId)
509                    throws com.liferay.portal.kernel.exception.SystemException {
510                    return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
511            }
512    
513            /**
514            * @throws SystemException if a system exception occurred
515            */
516            public boolean hasAssetTagAssetEntries(long tagId)
517                    throws com.liferay.portal.kernel.exception.SystemException {
518                    return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
519            }
520    
521            /**
522            * @throws SystemException if a system exception occurred
523            */
524            public void setAssetTagAssetEntries(long tagId, long[] entryIds)
525                    throws com.liferay.portal.kernel.exception.SystemException {
526                    _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
527            }
528    
529            /**
530            * Returns the Spring bean ID for this bean.
531            *
532            * @return the Spring bean ID for this bean
533            */
534            public java.lang.String getBeanIdentifier() {
535                    return _assetEntryLocalService.getBeanIdentifier();
536            }
537    
538            /**
539            * Sets the Spring bean ID for this bean.
540            *
541            * @param beanIdentifier the Spring bean ID for this bean
542            */
543            public void setBeanIdentifier(java.lang.String beanIdentifier) {
544                    _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
545            }
546    
547            public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
548                    throws com.liferay.portal.kernel.exception.PortalException,
549                            com.liferay.portal.kernel.exception.SystemException {
550                    _assetEntryLocalService.deleteEntry(entry);
551            }
552    
553            public void deleteEntry(long entryId)
554                    throws com.liferay.portal.kernel.exception.PortalException,
555                            com.liferay.portal.kernel.exception.SystemException {
556                    _assetEntryLocalService.deleteEntry(entryId);
557            }
558    
559            public void deleteEntry(java.lang.String className, long classPK)
560                    throws com.liferay.portal.kernel.exception.PortalException,
561                            com.liferay.portal.kernel.exception.SystemException {
562                    _assetEntryLocalService.deleteEntry(className, classPK);
563            }
564    
565            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
566                    throws com.liferay.portal.kernel.exception.SystemException {
567                    return _assetEntryLocalService.fetchEntry(entryId);
568            }
569    
570            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
571                    java.lang.String classUuid)
572                    throws com.liferay.portal.kernel.exception.SystemException {
573                    return _assetEntryLocalService.fetchEntry(groupId, classUuid);
574            }
575    
576            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
577                    java.lang.String className, long classPK)
578                    throws com.liferay.portal.kernel.exception.SystemException {
579                    return _assetEntryLocalService.fetchEntry(className, classPK);
580            }
581    
582            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
583                    long entryId)
584                    throws com.liferay.portal.kernel.exception.PortalException,
585                            com.liferay.portal.kernel.exception.SystemException {
586                    return _assetEntryLocalService.getAncestorEntries(entryId);
587            }
588    
589            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
590                    long entryId)
591                    throws com.liferay.portal.kernel.exception.PortalException,
592                            com.liferay.portal.kernel.exception.SystemException {
593                    return _assetEntryLocalService.getChildEntries(entryId);
594            }
595    
596            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
597                    long companyId, int start, int end)
598                    throws com.liferay.portal.kernel.exception.SystemException {
599                    return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
600            }
601    
602            public int getCompanyEntriesCount(long companyId)
603                    throws com.liferay.portal.kernel.exception.SystemException {
604                    return _assetEntryLocalService.getCompanyEntriesCount(companyId);
605            }
606    
607            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
608                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
609                    throws com.liferay.portal.kernel.exception.SystemException {
610                    return _assetEntryLocalService.getEntries(entryQuery);
611            }
612    
613            public int getEntriesCount(
614                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
615                    throws com.liferay.portal.kernel.exception.SystemException {
616                    return _assetEntryLocalService.getEntriesCount(entryQuery);
617            }
618    
619            public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
620                    throws com.liferay.portal.kernel.exception.PortalException,
621                            com.liferay.portal.kernel.exception.SystemException {
622                    return _assetEntryLocalService.getEntry(entryId);
623            }
624    
625            public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
626                    java.lang.String classUuid)
627                    throws com.liferay.portal.kernel.exception.PortalException,
628                            com.liferay.portal.kernel.exception.SystemException {
629                    return _assetEntryLocalService.getEntry(groupId, classUuid);
630            }
631    
632            public com.liferay.portlet.asset.model.AssetEntry getEntry(
633                    java.lang.String className, long classPK)
634                    throws com.liferay.portal.kernel.exception.PortalException,
635                            com.liferay.portal.kernel.exception.SystemException {
636                    return _assetEntryLocalService.getEntry(className, classPK);
637            }
638    
639            public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
640                    throws com.liferay.portal.kernel.exception.PortalException,
641                            com.liferay.portal.kernel.exception.SystemException {
642                    return _assetEntryLocalService.getNextEntry(entryId);
643            }
644    
645            public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
646                    long entryId)
647                    throws com.liferay.portal.kernel.exception.PortalException,
648                            com.liferay.portal.kernel.exception.SystemException {
649                    return _assetEntryLocalService.getParentEntry(entryId);
650            }
651    
652            public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
653                    long entryId)
654                    throws com.liferay.portal.kernel.exception.PortalException,
655                            com.liferay.portal.kernel.exception.SystemException {
656                    return _assetEntryLocalService.getPreviousEntry(entryId);
657            }
658    
659            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
660                    java.lang.String className, boolean asc, int start, int end)
661                    throws com.liferay.portal.kernel.exception.SystemException {
662                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
663                            start, end);
664            }
665    
666            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
667                    java.lang.String[] className, boolean asc, int start, int end)
668                    throws com.liferay.portal.kernel.exception.SystemException {
669                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
670                            start, end);
671            }
672    
673            public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
674                    long userId, java.lang.String className, long classPK)
675                    throws com.liferay.portal.kernel.exception.PortalException,
676                            com.liferay.portal.kernel.exception.SystemException {
677                    return _assetEntryLocalService.incrementViewCounter(userId, className,
678                            classPK);
679            }
680    
681            public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
682                    long userId, java.lang.String className, long classPK, int increment)
683                    throws com.liferay.portal.kernel.exception.SystemException {
684                    return _assetEntryLocalService.incrementViewCounter(userId, className,
685                            classPK, increment);
686            }
687    
688            public void reindex(
689                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
690                    throws com.liferay.portal.kernel.exception.PortalException {
691                    _assetEntryLocalService.reindex(entries);
692            }
693    
694            /**
695            * @deprecated {@link #search(long, long[], long, String, String, int, int,
696            int)}
697            */
698            public com.liferay.portal.kernel.search.Hits search(long companyId,
699                    long[] groupIds, long userId, java.lang.String className,
700                    java.lang.String keywords, int start, int end)
701                    throws com.liferay.portal.kernel.exception.SystemException {
702                    return _assetEntryLocalService.search(companyId, groupIds, userId,
703                            className, keywords, start, end);
704            }
705    
706            public com.liferay.portal.kernel.search.Hits search(long companyId,
707                    long[] groupIds, long userId, java.lang.String className,
708                    java.lang.String keywords, int status, int start, int end)
709                    throws com.liferay.portal.kernel.exception.SystemException {
710                    return _assetEntryLocalService.search(companyId, groupIds, userId,
711                            className, keywords, status, start, end);
712            }
713    
714            /**
715            * @deprecated {@link #search(long, long[], long, String, String, String,
716            String, String, String, int, boolean, int, int)}
717            */
718            public com.liferay.portal.kernel.search.Hits search(long companyId,
719                    long[] groupIds, long userId, java.lang.String className,
720                    java.lang.String userName, java.lang.String title,
721                    java.lang.String description, java.lang.String assetCategoryIds,
722                    java.lang.String assetTagNames, boolean andSearch, int start, int end)
723                    throws com.liferay.portal.kernel.exception.SystemException {
724                    return _assetEntryLocalService.search(companyId, groupIds, userId,
725                            className, userName, title, description, assetCategoryIds,
726                            assetTagNames, andSearch, start, end);
727            }
728    
729            public com.liferay.portal.kernel.search.Hits search(long companyId,
730                    long[] groupIds, long userId, java.lang.String className,
731                    java.lang.String userName, java.lang.String title,
732                    java.lang.String description, java.lang.String assetCategoryIds,
733                    java.lang.String assetTagNames, int status, boolean andSearch,
734                    int start, int end)
735                    throws com.liferay.portal.kernel.exception.SystemException {
736                    return _assetEntryLocalService.search(companyId, groupIds, userId,
737                            className, userName, title, description, assetCategoryIds,
738                            assetTagNames, status, andSearch, start, end);
739            }
740    
741            /**
742            * @deprecated {@link #search(long, long[], long, String, String, int, int,
743            int)}
744            */
745            public com.liferay.portal.kernel.search.Hits search(long companyId,
746                    long[] groupIds, java.lang.String className, java.lang.String keywords,
747                    int start, int end)
748                    throws com.liferay.portal.kernel.exception.SystemException {
749                    return _assetEntryLocalService.search(companyId, groupIds, className,
750                            keywords, start, end);
751            }
752    
753            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
754                    long groupId, java.util.Date createDate, java.util.Date modifiedDate,
755                    java.lang.String className, long classPK, java.lang.String classUuid,
756                    long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
757                    boolean visible, java.util.Date startDate, java.util.Date endDate,
758                    java.util.Date publishDate, java.util.Date expirationDate,
759                    java.lang.String mimeType, java.lang.String title,
760                    java.lang.String description, java.lang.String summary,
761                    java.lang.String url, java.lang.String layoutUuid, int height,
762                    int width, java.lang.Integer priority, boolean sync)
763                    throws com.liferay.portal.kernel.exception.PortalException,
764                            com.liferay.portal.kernel.exception.SystemException {
765                    return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
766                            modifiedDate, className, classPK, classUuid, classTypeId,
767                            categoryIds, tagNames, visible, startDate, endDate, publishDate,
768                            expirationDate, mimeType, title, description, summary, url,
769                            layoutUuid, height, width, priority, sync);
770            }
771    
772            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
773                    long groupId, java.lang.String className, long classPK,
774                    long[] categoryIds, java.lang.String[] tagNames)
775                    throws com.liferay.portal.kernel.exception.PortalException,
776                            com.liferay.portal.kernel.exception.SystemException {
777                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
778                            classPK, categoryIds, tagNames);
779            }
780    
781            /**
782            * @deprecated {@link #updateEntry(long, long, Date, Date, String, long,
783            String, long, long[], String[], boolean, Date, Date, Date,
784            Date, String, String, String, String, String, String, int,
785            int, Integer, boolean)}
786            */
787            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
788                    long groupId, java.lang.String className, long classPK,
789                    java.lang.String classUuid, long classTypeId, long[] categoryIds,
790                    java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
791                    java.util.Date endDate, java.util.Date publishDate,
792                    java.util.Date expirationDate, java.lang.String mimeType,
793                    java.lang.String title, java.lang.String description,
794                    java.lang.String summary, java.lang.String url,
795                    java.lang.String layoutUuid, int height, int width,
796                    java.lang.Integer priority, boolean sync)
797                    throws com.liferay.portal.kernel.exception.PortalException,
798                            com.liferay.portal.kernel.exception.SystemException {
799                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
800                            classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
801                            startDate, endDate, publishDate, expirationDate, mimeType, title,
802                            description, summary, url, layoutUuid, height, width, priority, sync);
803            }
804    
805            public com.liferay.portlet.asset.model.AssetEntry updateEntry(
806                    java.lang.String className, long classPK, java.util.Date publishDate,
807                    java.util.Date expirationDate, boolean visible)
808                    throws com.liferay.portal.kernel.exception.PortalException,
809                            com.liferay.portal.kernel.exception.SystemException {
810                    return _assetEntryLocalService.updateEntry(className, classPK,
811                            publishDate, expirationDate, visible);
812            }
813    
814            public com.liferay.portlet.asset.model.AssetEntry updateVisible(
815                    java.lang.String className, long classPK, boolean visible)
816                    throws com.liferay.portal.kernel.exception.PortalException,
817                            com.liferay.portal.kernel.exception.SystemException {
818                    return _assetEntryLocalService.updateVisible(className, classPK, visible);
819            }
820    
821            public void validate(long groupId, java.lang.String className,
822                    long[] categoryIds, java.lang.String[] tagNames)
823                    throws com.liferay.portal.kernel.exception.PortalException,
824                            com.liferay.portal.kernel.exception.SystemException {
825                    _assetEntryLocalService.validate(groupId, className, categoryIds,
826                            tagNames);
827            }
828    
829            /**
830             * @deprecated Renamed to {@link #getWrappedService}
831             */
832            public AssetEntryLocalService getWrappedAssetEntryLocalService() {
833                    return _assetEntryLocalService;
834            }
835    
836            /**
837             * @deprecated Renamed to {@link #setWrappedService}
838             */
839            public void setWrappedAssetEntryLocalService(
840                    AssetEntryLocalService assetEntryLocalService) {
841                    _assetEntryLocalService = assetEntryLocalService;
842            }
843    
844            public AssetEntryLocalService getWrappedService() {
845                    return _assetEntryLocalService;
846            }
847    
848            public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
849                    _assetEntryLocalService = assetEntryLocalService;
850            }
851    
852            private AssetEntryLocalService _assetEntryLocalService;
853    }