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.trash.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * Provides a wrapper for {@link TrashEntryLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see TrashEntryLocalService
024     * @generated
025     */
026    public class TrashEntryLocalServiceWrapper implements TrashEntryLocalService,
027            ServiceWrapper<TrashEntryLocalService> {
028            public TrashEntryLocalServiceWrapper(
029                    TrashEntryLocalService trashEntryLocalService) {
030                    _trashEntryLocalService = trashEntryLocalService;
031            }
032    
033            /**
034            * Adds the trash entry to the database. Also notifies the appropriate model listeners.
035            *
036            * @param trashEntry the trash entry
037            * @return the trash entry that was added
038            * @throws SystemException if a system exception occurred
039            */
040            @Override
041            public com.liferay.portlet.trash.model.TrashEntry addTrashEntry(
042                    com.liferay.portlet.trash.model.TrashEntry trashEntry)
043                    throws com.liferay.portal.kernel.exception.SystemException {
044                    return _trashEntryLocalService.addTrashEntry(trashEntry);
045            }
046    
047            /**
048            * Creates a new trash entry with the primary key. Does not add the trash entry to the database.
049            *
050            * @param entryId the primary key for the new trash entry
051            * @return the new trash entry
052            */
053            @Override
054            public com.liferay.portlet.trash.model.TrashEntry createTrashEntry(
055                    long entryId) {
056                    return _trashEntryLocalService.createTrashEntry(entryId);
057            }
058    
059            /**
060            * Deletes the trash entry with the primary key from the database. Also notifies the appropriate model listeners.
061            *
062            * @param entryId the primary key of the trash entry
063            * @return the trash entry that was removed
064            * @throws PortalException if a trash entry with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            @Override
068            public com.liferay.portlet.trash.model.TrashEntry deleteTrashEntry(
069                    long entryId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _trashEntryLocalService.deleteTrashEntry(entryId);
073            }
074    
075            /**
076            * Deletes the trash entry from the database. Also notifies the appropriate model listeners.
077            *
078            * @param trashEntry the trash entry
079            * @return the trash entry that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            @Override
083            public com.liferay.portlet.trash.model.TrashEntry deleteTrashEntry(
084                    com.liferay.portlet.trash.model.TrashEntry trashEntry)
085                    throws com.liferay.portal.kernel.exception.SystemException {
086                    return _trashEntryLocalService.deleteTrashEntry(trashEntry);
087            }
088    
089            @Override
090            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091                    return _trashEntryLocalService.dynamicQuery();
092            }
093    
094            /**
095            * Performs a dynamic query on the database and returns the matching rows.
096            *
097            * @param dynamicQuery the dynamic query
098            * @return the matching rows
099            * @throws SystemException if a system exception occurred
100            */
101            @Override
102            @SuppressWarnings("rawtypes")
103            public java.util.List dynamicQuery(
104                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105                    throws com.liferay.portal.kernel.exception.SystemException {
106                    return _trashEntryLocalService.dynamicQuery(dynamicQuery);
107            }
108    
109            /**
110            * Performs a dynamic query on the database and returns a range of the matching rows.
111            *
112            * <p>
113            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.trash.model.impl.TrashEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
114            * </p>
115            *
116            * @param dynamicQuery the dynamic query
117            * @param start the lower bound of the range of model instances
118            * @param end the upper bound of the range of model instances (not inclusive)
119            * @return the range of matching rows
120            * @throws SystemException if a system exception occurred
121            */
122            @Override
123            @SuppressWarnings("rawtypes")
124            public java.util.List dynamicQuery(
125                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126                    int end) throws com.liferay.portal.kernel.exception.SystemException {
127                    return _trashEntryLocalService.dynamicQuery(dynamicQuery, start, end);
128            }
129    
130            /**
131            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
132            *
133            * <p>
134            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.trash.model.impl.TrashEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
135            * </p>
136            *
137            * @param dynamicQuery the dynamic query
138            * @param start the lower bound of the range of model instances
139            * @param end the upper bound of the range of model instances (not inclusive)
140            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
141            * @return the ordered range of matching rows
142            * @throws SystemException if a system exception occurred
143            */
144            @Override
145            @SuppressWarnings("rawtypes")
146            public java.util.List dynamicQuery(
147                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148                    int end,
149                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150                    throws com.liferay.portal.kernel.exception.SystemException {
151                    return _trashEntryLocalService.dynamicQuery(dynamicQuery, start, end,
152                            orderByComparator);
153            }
154    
155            /**
156            * Returns the number of rows that match the dynamic query.
157            *
158            * @param dynamicQuery the dynamic query
159            * @return the number of rows that match the dynamic query
160            * @throws SystemException if a system exception occurred
161            */
162            @Override
163            public long dynamicQueryCount(
164                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _trashEntryLocalService.dynamicQueryCount(dynamicQuery);
167            }
168    
169            /**
170            * Returns the number of rows that match the dynamic query.
171            *
172            * @param dynamicQuery the dynamic query
173            * @param projection the projection to apply to the query
174            * @return the number of rows that match the dynamic query
175            * @throws SystemException if a system exception occurred
176            */
177            @Override
178            public long dynamicQueryCount(
179                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180                    com.liferay.portal.kernel.dao.orm.Projection projection)
181                    throws com.liferay.portal.kernel.exception.SystemException {
182                    return _trashEntryLocalService.dynamicQueryCount(dynamicQuery,
183                            projection);
184            }
185    
186            @Override
187            public com.liferay.portlet.trash.model.TrashEntry fetchTrashEntry(
188                    long entryId)
189                    throws com.liferay.portal.kernel.exception.SystemException {
190                    return _trashEntryLocalService.fetchTrashEntry(entryId);
191            }
192    
193            /**
194            * Returns the trash entry with the primary key.
195            *
196            * @param entryId the primary key of the trash entry
197            * @return the trash entry
198            * @throws PortalException if a trash entry with the primary key could not be found
199            * @throws SystemException if a system exception occurred
200            */
201            @Override
202            public com.liferay.portlet.trash.model.TrashEntry getTrashEntry(
203                    long entryId)
204                    throws com.liferay.portal.kernel.exception.PortalException,
205                            com.liferay.portal.kernel.exception.SystemException {
206                    return _trashEntryLocalService.getTrashEntry(entryId);
207            }
208    
209            @Override
210            public com.liferay.portal.model.PersistedModel getPersistedModel(
211                    java.io.Serializable primaryKeyObj)
212                    throws com.liferay.portal.kernel.exception.PortalException,
213                            com.liferay.portal.kernel.exception.SystemException {
214                    return _trashEntryLocalService.getPersistedModel(primaryKeyObj);
215            }
216    
217            /**
218            * Returns a range of all the trash entries.
219            *
220            * <p>
221            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.trash.model.impl.TrashEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
222            * </p>
223            *
224            * @param start the lower bound of the range of trash entries
225            * @param end the upper bound of the range of trash entries (not inclusive)
226            * @return the range of trash entries
227            * @throws SystemException if a system exception occurred
228            */
229            @Override
230            public java.util.List<com.liferay.portlet.trash.model.TrashEntry> getTrashEntries(
231                    int start, int end)
232                    throws com.liferay.portal.kernel.exception.SystemException {
233                    return _trashEntryLocalService.getTrashEntries(start, end);
234            }
235    
236            /**
237            * Returns the number of trash entries.
238            *
239            * @return the number of trash entries
240            * @throws SystemException if a system exception occurred
241            */
242            @Override
243            public int getTrashEntriesCount()
244                    throws com.liferay.portal.kernel.exception.SystemException {
245                    return _trashEntryLocalService.getTrashEntriesCount();
246            }
247    
248            /**
249            * Updates the trash entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
250            *
251            * @param trashEntry the trash entry
252            * @return the trash entry that was updated
253            * @throws SystemException if a system exception occurred
254            */
255            @Override
256            public com.liferay.portlet.trash.model.TrashEntry updateTrashEntry(
257                    com.liferay.portlet.trash.model.TrashEntry trashEntry)
258                    throws com.liferay.portal.kernel.exception.SystemException {
259                    return _trashEntryLocalService.updateTrashEntry(trashEntry);
260            }
261    
262            /**
263            * Returns the Spring bean ID for this bean.
264            *
265            * @return the Spring bean ID for this bean
266            */
267            @Override
268            public java.lang.String getBeanIdentifier() {
269                    return _trashEntryLocalService.getBeanIdentifier();
270            }
271    
272            /**
273            * Sets the Spring bean ID for this bean.
274            *
275            * @param beanIdentifier the Spring bean ID for this bean
276            */
277            @Override
278            public void setBeanIdentifier(java.lang.String beanIdentifier) {
279                    _trashEntryLocalService.setBeanIdentifier(beanIdentifier);
280            }
281    
282            /**
283            * Moves an entry to trash.
284            *
285            * @param userId the primary key of the user removing the entity
286            * @param groupId the primary key of the entry's group
287            * @param className the class name of the entity
288            * @param classPK the primary key of the entity
289            * @param status the status of the entity prior to being moved to trash
290            * @param statusOVPs the primary keys and statuses of any of the entry's
291            versions (e.g., {@link
292            com.liferay.portlet.documentlibrary.model.DLFileVersion})
293            * @param typeSettingsProperties the type settings properties
294            * @return the trashEntry
295            * @throws PortalException if a user with the primary key could not be found
296            * @throws SystemException if a system exception occurred
297            */
298            @Override
299            public com.liferay.portlet.trash.model.TrashEntry addTrashEntry(
300                    long userId, long groupId, java.lang.String className, long classPK,
301                    java.lang.String classUuid, java.lang.String referrerClassName,
302                    int status,
303                    java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.Long, java.lang.Integer>> statusOVPs,
304                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties)
305                    throws com.liferay.portal.kernel.exception.PortalException,
306                            com.liferay.portal.kernel.exception.SystemException {
307                    return _trashEntryLocalService.addTrashEntry(userId, groupId,
308                            className, classPK, classUuid, referrerClassName, status,
309                            statusOVPs, typeSettingsProperties);
310            }
311    
312            @Override
313            public void checkEntries()
314                    throws com.liferay.portal.kernel.exception.PortalException,
315                            com.liferay.portal.kernel.exception.SystemException {
316                    _trashEntryLocalService.checkEntries();
317            }
318    
319            /**
320            * Deletes the trash entry with the primary key.
321            *
322            * @param entryId the primary key of the trash entry
323            * @return the trash entry with the primary key
324            * @throws PortalException if a trash entry with the primary key could not
325            be found
326            * @throws SystemException if a system exception occurred
327            */
328            @Override
329            public com.liferay.portlet.trash.model.TrashEntry deleteEntry(long entryId)
330                    throws com.liferay.portal.kernel.exception.PortalException,
331                            com.liferay.portal.kernel.exception.SystemException {
332                    return _trashEntryLocalService.deleteEntry(entryId);
333            }
334    
335            /**
336            * Deletes the trash entry with the entity class name and primary key.
337            *
338            * @param className the class name of entity
339            * @param classPK the primary key of the entry
340            * @return the trash entry with the entity class name and primary key
341            * @throws PortalException if a trash entry with the primary key could not
342            be found
343            * @throws SystemException if a system exception occurred
344            */
345            @Override
346            public com.liferay.portlet.trash.model.TrashEntry deleteEntry(
347                    java.lang.String className, long classPK)
348                    throws com.liferay.portal.kernel.exception.PortalException,
349                            com.liferay.portal.kernel.exception.SystemException {
350                    return _trashEntryLocalService.deleteEntry(className, classPK);
351            }
352    
353            @Override
354            public com.liferay.portlet.trash.model.TrashEntry deleteEntry(
355                    com.liferay.portlet.trash.model.TrashEntry trashEntry)
356                    throws com.liferay.portal.kernel.exception.SystemException {
357                    return _trashEntryLocalService.deleteEntry(trashEntry);
358            }
359    
360            /**
361            * Returns the trash entry with the primary key.
362            *
363            * @param entryId the primary key of the entry
364            * @return the trash entry with the primary key
365            * @throws SystemException if a system exception occurred
366            */
367            @Override
368            public com.liferay.portlet.trash.model.TrashEntry fetchEntry(long entryId)
369                    throws com.liferay.portal.kernel.exception.SystemException {
370                    return _trashEntryLocalService.fetchEntry(entryId);
371            }
372    
373            /**
374            * Returns the trash entry with the entity class name and primary key.
375            *
376            * @param className the class name of the entity
377            * @param classPK the primary key of the entity
378            * @return the trash entry with the entity class name and primary key
379            * @throws SystemException if a system exception occurred
380            */
381            @Override
382            public com.liferay.portlet.trash.model.TrashEntry fetchEntry(
383                    java.lang.String className, long classPK)
384                    throws com.liferay.portal.kernel.exception.SystemException {
385                    return _trashEntryLocalService.fetchEntry(className, classPK);
386            }
387    
388            /**
389            * Returns the trash entries with the matching group ID.
390            *
391            * @param groupId the primary key of the group
392            * @return the trash entries with the group ID
393            * @throws SystemException if a system exception occurred
394            */
395            @Override
396            public java.util.List<com.liferay.portlet.trash.model.TrashEntry> getEntries(
397                    long groupId)
398                    throws com.liferay.portal.kernel.exception.SystemException {
399                    return _trashEntryLocalService.getEntries(groupId);
400            }
401    
402            /**
403            * Returns a range of all the trash entries matching the group ID.
404            *
405            * @param groupId the primary key of the group
406            * @param start the lower bound of the range of trash entries to return
407            * @param end the upper bound of the range of trash entries to return (not
408            inclusive)
409            * @return the range of matching trash entries
410            * @throws SystemException if a system exception occurred
411            */
412            @Override
413            public java.util.List<com.liferay.portlet.trash.model.TrashEntry> getEntries(
414                    long groupId, int start, int end)
415                    throws com.liferay.portal.kernel.exception.SystemException {
416                    return _trashEntryLocalService.getEntries(groupId, start, end);
417            }
418    
419            /**
420            * Returns a range of all the trash entries matching the group ID.
421            *
422            * @param groupId the primary key of the group
423            * @param start the lower bound of the range of trash entries to return
424            * @param end the upper bound of the range of trash entries to return (not
425            inclusive)
426            * @param obc the comparator to order the trash entries (optionally
427            <code>null</code>)
428            * @return the range of matching trash entries ordered by comparator
429            <code>obc</code>
430            * @throws SystemException if a system exception occurred
431            */
432            @Override
433            public java.util.List<com.liferay.portlet.trash.model.TrashEntry> getEntries(
434                    long groupId, int start, int end,
435                    com.liferay.portal.kernel.util.OrderByComparator obc)
436                    throws com.liferay.portal.kernel.exception.SystemException {
437                    return _trashEntryLocalService.getEntries(groupId, start, end, obc);
438            }
439    
440            @Override
441            public java.util.List<com.liferay.portlet.trash.model.TrashEntry> getEntries(
442                    long groupId, java.lang.String className)
443                    throws com.liferay.portal.kernel.exception.SystemException {
444                    return _trashEntryLocalService.getEntries(groupId, className);
445            }
446    
447            /**
448            * Returns the number of trash entries with the group ID.
449            *
450            * @param groupId the primary key of the group
451            * @return the number of matching trash entries
452            * @throws SystemException if a system exception occurred
453            */
454            @Override
455            public int getEntriesCount(long groupId)
456                    throws com.liferay.portal.kernel.exception.SystemException {
457                    return _trashEntryLocalService.getEntriesCount(groupId);
458            }
459    
460            /**
461            * Returns the trash entry with the primary key.
462            *
463            * @param entryId the primary key of the trash entry
464            * @return the trash entry with the primary key
465            * @throws PortalException if a trash entry with the primary key could not
466            be found
467            * @throws SystemException if a system exception occurred
468            */
469            @Override
470            public com.liferay.portlet.trash.model.TrashEntry getEntry(long entryId)
471                    throws com.liferay.portal.kernel.exception.PortalException,
472                            com.liferay.portal.kernel.exception.SystemException {
473                    return _trashEntryLocalService.getEntry(entryId);
474            }
475    
476            /**
477            * Returns the entry with the entity class name and primary key.
478            *
479            * @param className the class name of the entity
480            * @param classPK the primary key of the entity
481            * @return the trash entry with the entity class name and primary key
482            * @throws PortalException if a trash entry with the primary key could not
483            be found
484            * @throws SystemException if a system exception occurred
485            */
486            @Override
487            public com.liferay.portlet.trash.model.TrashEntry getEntry(
488                    java.lang.String className, long classPK)
489                    throws com.liferay.portal.kernel.exception.PortalException,
490                            com.liferay.portal.kernel.exception.SystemException {
491                    return _trashEntryLocalService.getEntry(className, classPK);
492            }
493    
494            @Override
495            public com.liferay.portal.kernel.search.Hits search(long companyId,
496                    long groupId, long userId, java.lang.String keywords, int start,
497                    int end, com.liferay.portal.kernel.search.Sort sort)
498                    throws com.liferay.portal.kernel.exception.SystemException {
499                    return _trashEntryLocalService.search(companyId, groupId, userId,
500                            keywords, start, end, sort);
501            }
502    
503            /**
504             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
505             */
506            public TrashEntryLocalService getWrappedTrashEntryLocalService() {
507                    return _trashEntryLocalService;
508            }
509    
510            /**
511             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
512             */
513            public void setWrappedTrashEntryLocalService(
514                    TrashEntryLocalService trashEntryLocalService) {
515                    _trashEntryLocalService = trashEntryLocalService;
516            }
517    
518            @Override
519            public TrashEntryLocalService getWrappedService() {
520                    return _trashEntryLocalService;
521            }
522    
523            @Override
524            public void setWrappedService(TrashEntryLocalService trashEntryLocalService) {
525                    _trashEntryLocalService = trashEntryLocalService;
526            }
527    
528            private TrashEntryLocalService _trashEntryLocalService;
529    }