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.softwarecatalog.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * Provides a wrapper for {@link SCProductScreenshotLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see SCProductScreenshotLocalService
024     * @generated
025     */
026    public class SCProductScreenshotLocalServiceWrapper
027            implements SCProductScreenshotLocalService,
028                    ServiceWrapper<SCProductScreenshotLocalService> {
029            public SCProductScreenshotLocalServiceWrapper(
030                    SCProductScreenshotLocalService scProductScreenshotLocalService) {
031                    _scProductScreenshotLocalService = scProductScreenshotLocalService;
032            }
033    
034            /**
035            * Adds the s c product screenshot to the database. Also notifies the appropriate model listeners.
036            *
037            * @param scProductScreenshot the s c product screenshot
038            * @return the s c product screenshot that was added
039            * @throws SystemException if a system exception occurred
040            */
041            @Override
042            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
043                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _scProductScreenshotLocalService.addSCProductScreenshot(scProductScreenshot);
046            }
047    
048            /**
049            * Creates a new s c product screenshot with the primary key. Does not add the s c product screenshot to the database.
050            *
051            * @param productScreenshotId the primary key for the new s c product screenshot
052            * @return the new s c product screenshot
053            */
054            @Override
055            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot createSCProductScreenshot(
056                    long productScreenshotId) {
057                    return _scProductScreenshotLocalService.createSCProductScreenshot(productScreenshotId);
058            }
059    
060            /**
061            * Deletes the s c product screenshot with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param productScreenshotId the primary key of the s c product screenshot
064            * @return the s c product screenshot that was removed
065            * @throws PortalException if a s c product screenshot with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            @Override
069            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot deleteSCProductScreenshot(
070                    long productScreenshotId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _scProductScreenshotLocalService.deleteSCProductScreenshot(productScreenshotId);
074            }
075    
076            /**
077            * Deletes the s c product screenshot from the database. Also notifies the appropriate model listeners.
078            *
079            * @param scProductScreenshot the s c product screenshot
080            * @return the s c product screenshot that was removed
081            * @throws SystemException if a system exception occurred
082            */
083            @Override
084            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot deleteSCProductScreenshot(
085                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
086                    throws com.liferay.portal.kernel.exception.SystemException {
087                    return _scProductScreenshotLocalService.deleteSCProductScreenshot(scProductScreenshot);
088            }
089    
090            @Override
091            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092                    return _scProductScreenshotLocalService.dynamicQuery();
093            }
094    
095            /**
096            * Performs a dynamic query on the database and returns the matching rows.
097            *
098            * @param dynamicQuery the dynamic query
099            * @return the matching rows
100            * @throws SystemException if a system exception occurred
101            */
102            @Override
103            @SuppressWarnings("rawtypes")
104            public java.util.List dynamicQuery(
105                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery);
108            }
109    
110            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * 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.softwarecatalog.model.impl.SCProductScreenshotModelImpl}. 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.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
123            @Override
124            @SuppressWarnings("rawtypes")
125            public java.util.List dynamicQuery(
126                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127                    int end) throws com.liferay.portal.kernel.exception.SystemException {
128                    return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
129                            start, end);
130            }
131    
132            /**
133            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
134            *
135            * <p>
136            * 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.softwarecatalog.model.impl.SCProductScreenshotModelImpl}. 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.
137            * </p>
138            *
139            * @param dynamicQuery the dynamic query
140            * @param start the lower bound of the range of model instances
141            * @param end the upper bound of the range of model instances (not inclusive)
142            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
143            * @return the ordered range of matching rows
144            * @throws SystemException if a system exception occurred
145            */
146            @Override
147            @SuppressWarnings("rawtypes")
148            public java.util.List dynamicQuery(
149                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
150                    int end,
151                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152                    throws com.liferay.portal.kernel.exception.SystemException {
153                    return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
154                            start, end, orderByComparator);
155            }
156    
157            /**
158            * Returns the number of rows that match the dynamic query.
159            *
160            * @param dynamicQuery the dynamic query
161            * @return the number of rows that match the dynamic query
162            * @throws SystemException if a system exception occurred
163            */
164            @Override
165            public long dynamicQueryCount(
166                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
167                    throws com.liferay.portal.kernel.exception.SystemException {
168                    return _scProductScreenshotLocalService.dynamicQueryCount(dynamicQuery);
169            }
170    
171            /**
172            * Returns the number of rows that match the dynamic query.
173            *
174            * @param dynamicQuery the dynamic query
175            * @param projection the projection to apply to the query
176            * @return the number of rows that match the dynamic query
177            * @throws SystemException if a system exception occurred
178            */
179            @Override
180            public long dynamicQueryCount(
181                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
182                    com.liferay.portal.kernel.dao.orm.Projection projection)
183                    throws com.liferay.portal.kernel.exception.SystemException {
184                    return _scProductScreenshotLocalService.dynamicQueryCount(dynamicQuery,
185                            projection);
186            }
187    
188            @Override
189            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot fetchSCProductScreenshot(
190                    long productScreenshotId)
191                    throws com.liferay.portal.kernel.exception.SystemException {
192                    return _scProductScreenshotLocalService.fetchSCProductScreenshot(productScreenshotId);
193            }
194    
195            /**
196            * Returns the s c product screenshot with the primary key.
197            *
198            * @param productScreenshotId the primary key of the s c product screenshot
199            * @return the s c product screenshot
200            * @throws PortalException if a s c product screenshot with the primary key could not be found
201            * @throws SystemException if a system exception occurred
202            */
203            @Override
204            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
205                    long productScreenshotId)
206                    throws com.liferay.portal.kernel.exception.PortalException,
207                            com.liferay.portal.kernel.exception.SystemException {
208                    return _scProductScreenshotLocalService.getSCProductScreenshot(productScreenshotId);
209            }
210    
211            @Override
212            public com.liferay.portal.model.PersistedModel getPersistedModel(
213                    java.io.Serializable primaryKeyObj)
214                    throws com.liferay.portal.kernel.exception.PortalException,
215                            com.liferay.portal.kernel.exception.SystemException {
216                    return _scProductScreenshotLocalService.getPersistedModel(primaryKeyObj);
217            }
218    
219            /**
220            * Returns a range of all the s c product screenshots.
221            *
222            * <p>
223            * 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.softwarecatalog.model.impl.SCProductScreenshotModelImpl}. 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.
224            * </p>
225            *
226            * @param start the lower bound of the range of s c product screenshots
227            * @param end the upper bound of the range of s c product screenshots (not inclusive)
228            * @return the range of s c product screenshots
229            * @throws SystemException if a system exception occurred
230            */
231            @Override
232            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
233                    int start, int end)
234                    throws com.liferay.portal.kernel.exception.SystemException {
235                    return _scProductScreenshotLocalService.getSCProductScreenshots(start,
236                            end);
237            }
238    
239            /**
240            * Returns the number of s c product screenshots.
241            *
242            * @return the number of s c product screenshots
243            * @throws SystemException if a system exception occurred
244            */
245            @Override
246            public int getSCProductScreenshotsCount()
247                    throws com.liferay.portal.kernel.exception.SystemException {
248                    return _scProductScreenshotLocalService.getSCProductScreenshotsCount();
249            }
250    
251            /**
252            * Updates the s c product screenshot in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
253            *
254            * @param scProductScreenshot the s c product screenshot
255            * @return the s c product screenshot that was updated
256            * @throws SystemException if a system exception occurred
257            */
258            @Override
259            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
260                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
261                    throws com.liferay.portal.kernel.exception.SystemException {
262                    return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot);
263            }
264    
265            /**
266            * Returns the Spring bean ID for this bean.
267            *
268            * @return the Spring bean ID for this bean
269            */
270            @Override
271            public java.lang.String getBeanIdentifier() {
272                    return _scProductScreenshotLocalService.getBeanIdentifier();
273            }
274    
275            /**
276            * Sets the Spring bean ID for this bean.
277            *
278            * @param beanIdentifier the Spring bean ID for this bean
279            */
280            @Override
281            public void setBeanIdentifier(java.lang.String beanIdentifier) {
282                    _scProductScreenshotLocalService.setBeanIdentifier(beanIdentifier);
283            }
284    
285            @Override
286            public void deleteProductScreenshot(
287                    com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    _scProductScreenshotLocalService.deleteProductScreenshot(productScreenshot);
291            }
292    
293            @Override
294            public void deleteProductScreenshots(long productEntryId)
295                    throws com.liferay.portal.kernel.exception.PortalException,
296                            com.liferay.portal.kernel.exception.SystemException {
297                    _scProductScreenshotLocalService.deleteProductScreenshots(productEntryId);
298            }
299    
300            @Override
301            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
302                    long productEntryId, int priority)
303                    throws com.liferay.portal.kernel.exception.PortalException,
304                            com.liferay.portal.kernel.exception.SystemException {
305                    return _scProductScreenshotLocalService.getProductScreenshot(productEntryId,
306                            priority);
307            }
308    
309            @Override
310            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
311                    long fullImageId)
312                    throws com.liferay.portal.kernel.exception.PortalException,
313                            com.liferay.portal.kernel.exception.SystemException {
314                    return _scProductScreenshotLocalService.getProductScreenshotByFullImageId(fullImageId);
315            }
316    
317            @Override
318            public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
319                    long thumbnailId)
320                    throws com.liferay.portal.kernel.exception.PortalException,
321                            com.liferay.portal.kernel.exception.SystemException {
322                    return _scProductScreenshotLocalService.getProductScreenshotByThumbnailId(thumbnailId);
323            }
324    
325            @Override
326            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
327                    long productEntryId)
328                    throws com.liferay.portal.kernel.exception.SystemException {
329                    return _scProductScreenshotLocalService.getProductScreenshots(productEntryId);
330            }
331    
332            /**
333             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
334             */
335            public SCProductScreenshotLocalService getWrappedSCProductScreenshotLocalService() {
336                    return _scProductScreenshotLocalService;
337            }
338    
339            /**
340             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
341             */
342            public void setWrappedSCProductScreenshotLocalService(
343                    SCProductScreenshotLocalService scProductScreenshotLocalService) {
344                    _scProductScreenshotLocalService = scProductScreenshotLocalService;
345            }
346    
347            @Override
348            public SCProductScreenshotLocalService getWrappedService() {
349                    return _scProductScreenshotLocalService;
350            }
351    
352            @Override
353            public void setWrappedService(
354                    SCProductScreenshotLocalService scProductScreenshotLocalService) {
355                    _scProductScreenshotLocalService = scProductScreenshotLocalService;
356            }
357    
358            private SCProductScreenshotLocalService _scProductScreenshotLocalService;
359    }