001    /**
002     * Copyright (c) 2000-2012 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            * Returns the Spring bean ID for this bean.
234            *
235            * @return the Spring bean ID for this bean
236            */
237            public java.lang.String getBeanIdentifier() {
238                    return _assetEntryLocalService.getBeanIdentifier();
239            }
240    
241            /**
242            * Sets the Spring bean ID for this bean.
243            *
244            * @param beanIdentifier the Spring bean ID for this bean
245            */
246            public void setBeanIdentifier(java.lang.String beanIdentifier) {
247                    _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
248            }
249    
250            public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
251                    throws com.liferay.portal.kernel.exception.PortalException,
252                            com.liferay.portal.kernel.exception.SystemException {
253                    _assetEntryLocalService.deleteEntry(entry);
254            }
255    
256            public void deleteEntry(long entryId)
257                    throws com.liferay.portal.kernel.exception.PortalException,
258                            com.liferay.portal.kernel.exception.SystemException {
259                    _assetEntryLocalService.deleteEntry(entryId);
260            }
261    
262            public void deleteEntry(java.lang.String className, long classPK)
263                    throws com.liferay.portal.kernel.exception.PortalException,
264                            com.liferay.portal.kernel.exception.SystemException {
265                    _assetEntryLocalService.deleteEntry(className, classPK);
266            }
267    
268            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
269                    throws com.liferay.portal.kernel.exception.SystemException {
270                    return _assetEntryLocalService.fetchEntry(entryId);
271            }
272    
273            public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
274                    java.lang.String className, long classPK)
275                    throws com.liferay.portal.kernel.exception.SystemException {
276                    return _assetEntryLocalService.fetchEntry(className, classPK);
277            }
278    
279            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
280                    long entryId)
281                    throws com.liferay.portal.kernel.exception.PortalException,
282                            com.liferay.portal.kernel.exception.SystemException {
283                    return _assetEntryLocalService.getAncestorEntries(entryId);
284            }
285    
286            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
287                    long entryId)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    return _assetEntryLocalService.getChildEntries(entryId);
291            }
292    
293            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
294                    long companyId, int start, int end)
295                    throws com.liferay.portal.kernel.exception.SystemException {
296                    return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
297            }
298    
299            public int getCompanyEntriesCount(long companyId)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    return _assetEntryLocalService.getCompanyEntriesCount(companyId);
302            }
303    
304            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
305                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
306                    throws com.liferay.portal.kernel.exception.SystemException {
307                    return _assetEntryLocalService.getEntries(entryQuery);
308            }
309    
310            public int getEntriesCount(
311                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return _assetEntryLocalService.getEntriesCount(entryQuery);
314            }
315    
316            public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
317                    throws com.liferay.portal.kernel.exception.PortalException,
318                            com.liferay.portal.kernel.exception.SystemException {
319                    return _assetEntryLocalService.getEntry(entryId);
320            }
321    
322            public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
323                    java.lang.String classUuid)
324                    throws com.liferay.portal.kernel.exception.PortalException,
325                            com.liferay.portal.kernel.exception.SystemException {
326                    return _assetEntryLocalService.getEntry(groupId, classUuid);
327            }
328    
329            public com.liferay.portlet.asset.model.AssetEntry getEntry(
330                    java.lang.String className, long classPK)
331                    throws com.liferay.portal.kernel.exception.PortalException,
332                            com.liferay.portal.kernel.exception.SystemException {
333                    return _assetEntryLocalService.getEntry(className, classPK);
334            }
335    
336            public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
337                    throws com.liferay.portal.kernel.exception.PortalException,
338                            com.liferay.portal.kernel.exception.SystemException {
339                    return _assetEntryLocalService.getNextEntry(entryId);
340            }
341    
342            public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
343                    long entryId)
344                    throws com.liferay.portal.kernel.exception.PortalException,
345                            com.liferay.portal.kernel.exception.SystemException {
346                    return _assetEntryLocalService.getParentEntry(entryId);
347            }
348    
349            public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
350                    long entryId)
351                    throws com.liferay.portal.kernel.exception.PortalException,
352                            com.liferay.portal.kernel.exception.SystemException {
353                    return _assetEntryLocalService.getPreviousEntry(entryId);
354            }
355    
356            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
357                    java.lang.String className, boolean asc, int start, int end)
358                    throws com.liferay.portal.kernel.exception.SystemException {
359                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
360                            start, end);
361            }
362    
363            public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
364                    java.lang.String[] className, boolean asc, int start, int end)
365                    throws com.liferay.portal.kernel.exception.SystemException {
366                    return _assetEntryLocalService.getTopViewedEntries(className, asc,
367                            start, end);
368            }
369    
370            public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
371                    long userId, java.lang.String className, long classPK, int increment)
372                    throws com.liferay.portal.kernel.exception.SystemException {
373                    return _assetEntryLocalService.incrementViewCounter(userId, className,
374                            classPK, increment);
375            }
376    
377            public void reindex(
378                    java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
379                    throws com.liferay.portal.kernel.exception.PortalException {
380                    _assetEntryLocalService.reindex(entries);
381            }
382    
383            /**
384            * @deprecated {@link #search(long, long[], long, String, String, int, int,
385            int)}
386            */
387            public com.liferay.portal.kernel.search.Hits search(long companyId,
388                    long[] groupIds, long userId, java.lang.String className,
389                    java.lang.String keywords, int start, int end)
390                    throws com.liferay.portal.kernel.exception.SystemException {
391                    return _assetEntryLocalService.search(companyId, groupIds, userId,
392                            className, keywords, start, end);
393            }
394    
395            public com.liferay.portal.kernel.search.Hits search(long companyId,
396                    long[] groupIds, long userId, java.lang.String className,
397                    java.lang.String keywords, int status, int start, int end)
398                    throws com.liferay.portal.kernel.exception.SystemException {
399                    return _assetEntryLocalService.search(companyId, groupIds, userId,
400                            className, keywords, status, start, end);
401            }
402    
403            /**
404            * @deprecated {@link #search(long, long[], long, String, String, String,
405            String, String, String, int, boolean, int, int)}
406            */
407            public com.liferay.portal.kernel.search.Hits search(long companyId,
408                    long[] groupIds, long userId, java.lang.String className,
409                    java.lang.String userName, java.lang.String title,
410                    java.lang.String description, java.lang.String assetCategoryIds,
411                    java.lang.String assetTagNames, boolean andSearch, int start, int end)
412                    throws com.liferay.portal.kernel.exception.SystemException {
413                    return _assetEntryLocalService.search(companyId, groupIds, userId,
414                            className, userName, title, description, assetCategoryIds,
415                            assetTagNames, andSearch, start, end);
416            }
417    
418            public com.liferay.portal.kernel.search.Hits search(long companyId,
419                    long[] groupIds, long userId, java.lang.String className,
420                    java.lang.String userName, java.lang.String title,
421                    java.lang.String description, java.lang.String assetCategoryIds,
422                    java.lang.String assetTagNames, int status, boolean andSearch,
423                    int start, int end)
424                    throws com.liferay.portal.kernel.exception.SystemException {
425                    return _assetEntryLocalService.search(companyId, groupIds, userId,
426                            className, userName, title, description, assetCategoryIds,
427                            assetTagNames, status, andSearch, start, end);
428            }
429    
430            /**
431            * @deprecated {@link #search(long, long[], long, String, String, int, int,
432            int)}
433            */
434            public com.liferay.portal.kernel.search.Hits search(long companyId,
435                    long[] groupIds, java.lang.String className, java.lang.String keywords,
436                    int start, int end)
437                    throws com.liferay.portal.kernel.exception.SystemException {
438                    return _assetEntryLocalService.search(companyId, groupIds, className,
439                            keywords, start, end);
440            }
441    
442            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
443                    long groupId, java.util.Date createDate, java.util.Date modifiedDate,
444                    java.lang.String className, long classPK, java.lang.String classUuid,
445                    long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
446                    boolean visible, java.util.Date startDate, java.util.Date endDate,
447                    java.util.Date expirationDate, java.lang.String mimeType,
448                    java.lang.String title, java.lang.String description,
449                    java.lang.String summary, java.lang.String url,
450                    java.lang.String layoutUuid, int height, int width,
451                    java.lang.Integer priority, boolean sync)
452                    throws com.liferay.portal.kernel.exception.PortalException,
453                            com.liferay.portal.kernel.exception.SystemException {
454                    return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
455                            modifiedDate, className, classPK, classUuid, classTypeId,
456                            categoryIds, tagNames, visible, startDate, endDate, expirationDate,
457                            mimeType, title, description, summary, url, layoutUuid, height,
458                            width, priority, sync);
459            }
460    
461            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
462                    long groupId, java.lang.String className, long classPK,
463                    long[] categoryIds, java.lang.String[] tagNames)
464                    throws com.liferay.portal.kernel.exception.PortalException,
465                            com.liferay.portal.kernel.exception.SystemException {
466                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
467                            classPK, categoryIds, tagNames);
468            }
469    
470            /**
471            * @deprecated {@link #updateEntry(long, long, String, long, String, long,
472            long[], String[], boolean, Date, Date, Date, String, String,
473            String, String, String, String, int, int, Integer, boolean)}
474            */
475            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
476                    long groupId, java.lang.String className, long classPK,
477                    java.lang.String classUuid, long classTypeId, long[] categoryIds,
478                    java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
479                    java.util.Date endDate, java.util.Date publishDate,
480                    java.util.Date expirationDate, java.lang.String mimeType,
481                    java.lang.String title, java.lang.String description,
482                    java.lang.String summary, java.lang.String url,
483                    java.lang.String layoutUuid, int height, int width,
484                    java.lang.Integer priority, boolean sync)
485                    throws com.liferay.portal.kernel.exception.PortalException,
486                            com.liferay.portal.kernel.exception.SystemException {
487                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
488                            classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
489                            startDate, endDate, publishDate, expirationDate, mimeType, title,
490                            description, summary, url, layoutUuid, height, width, priority, sync);
491            }
492    
493            /**
494            * @deprecated {@link #updateEntry(long, long, Date, Date, String, long,
495            String, long, long[], String[], boolean, Date, Date, Date,
496            String, String, String, String, String, String, int, int,
497            Integer, boolean)}
498            */
499            public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
500                    long groupId, java.lang.String className, long classPK,
501                    java.lang.String classUuid, long classTypeId, long[] categoryIds,
502                    java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
503                    java.util.Date endDate, java.util.Date expirationDate,
504                    java.lang.String mimeType, java.lang.String title,
505                    java.lang.String description, java.lang.String summary,
506                    java.lang.String url, java.lang.String layoutUuid, int height,
507                    int width, java.lang.Integer priority, boolean sync)
508                    throws com.liferay.portal.kernel.exception.PortalException,
509                            com.liferay.portal.kernel.exception.SystemException {
510                    return _assetEntryLocalService.updateEntry(userId, groupId, className,
511                            classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
512                            startDate, endDate, expirationDate, mimeType, title, description,
513                            summary, url, layoutUuid, height, width, priority, sync);
514            }
515    
516            public com.liferay.portlet.asset.model.AssetEntry updateEntry(
517                    java.lang.String className, long classPK, java.util.Date publishDate,
518                    boolean visible)
519                    throws com.liferay.portal.kernel.exception.PortalException,
520                            com.liferay.portal.kernel.exception.SystemException {
521                    return _assetEntryLocalService.updateEntry(className, classPK,
522                            publishDate, visible);
523            }
524    
525            public com.liferay.portlet.asset.model.AssetEntry updateEntry(
526                    java.lang.String className, long classPK, java.util.Date publishDate,
527                    java.util.Date expirationDate, boolean visible)
528                    throws com.liferay.portal.kernel.exception.PortalException,
529                            com.liferay.portal.kernel.exception.SystemException {
530                    return _assetEntryLocalService.updateEntry(className, classPK,
531                            publishDate, expirationDate, visible);
532            }
533    
534            public com.liferay.portlet.asset.model.AssetEntry updateVisible(
535                    java.lang.String className, long classPK, boolean visible)
536                    throws com.liferay.portal.kernel.exception.PortalException,
537                            com.liferay.portal.kernel.exception.SystemException {
538                    return _assetEntryLocalService.updateVisible(className, classPK, visible);
539            }
540    
541            public void validate(long groupId, java.lang.String className,
542                    long[] categoryIds, java.lang.String[] tagNames)
543                    throws com.liferay.portal.kernel.exception.PortalException,
544                            com.liferay.portal.kernel.exception.SystemException {
545                    _assetEntryLocalService.validate(groupId, className, categoryIds,
546                            tagNames);
547            }
548    
549            /**
550             * @deprecated Renamed to {@link #getWrappedService}
551             */
552            public AssetEntryLocalService getWrappedAssetEntryLocalService() {
553                    return _assetEntryLocalService;
554            }
555    
556            /**
557             * @deprecated Renamed to {@link #setWrappedService}
558             */
559            public void setWrappedAssetEntryLocalService(
560                    AssetEntryLocalService assetEntryLocalService) {
561                    _assetEntryLocalService = assetEntryLocalService;
562            }
563    
564            public AssetEntryLocalService getWrappedService() {
565                    return _assetEntryLocalService;
566            }
567    
568            public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
569                    _assetEntryLocalService = assetEntryLocalService;
570            }
571    
572            private AssetEntryLocalService _assetEntryLocalService;
573    }