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 SCProductVersionLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see SCProductVersionLocalService
024     * @generated
025     */
026    public class SCProductVersionLocalServiceWrapper
027            implements SCProductVersionLocalService,
028                    ServiceWrapper<SCProductVersionLocalService> {
029            public SCProductVersionLocalServiceWrapper(
030                    SCProductVersionLocalService scProductVersionLocalService) {
031                    _scProductVersionLocalService = scProductVersionLocalService;
032            }
033    
034            /**
035            * Adds the s c product version to the database. Also notifies the appropriate model listeners.
036            *
037            * @param scProductVersion the s c product version
038            * @return the s c product version that was added
039            * @throws SystemException if a system exception occurred
040            */
041            @Override
042            public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
043                    com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _scProductVersionLocalService.addSCProductVersion(scProductVersion);
046            }
047    
048            /**
049            * Creates a new s c product version with the primary key. Does not add the s c product version to the database.
050            *
051            * @param productVersionId the primary key for the new s c product version
052            * @return the new s c product version
053            */
054            @Override
055            public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
056                    long productVersionId) {
057                    return _scProductVersionLocalService.createSCProductVersion(productVersionId);
058            }
059    
060            /**
061            * Deletes the s c product version with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param productVersionId the primary key of the s c product version
064            * @return the s c product version that was removed
065            * @throws PortalException if a s c product version 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.SCProductVersion deleteSCProductVersion(
070                    long productVersionId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _scProductVersionLocalService.deleteSCProductVersion(productVersionId);
074            }
075    
076            /**
077            * Deletes the s c product version from the database. Also notifies the appropriate model listeners.
078            *
079            * @param scProductVersion the s c product version
080            * @return the s c product version that was removed
081            * @throws SystemException if a system exception occurred
082            */
083            @Override
084            public com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
085                    com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
086                    throws com.liferay.portal.kernel.exception.SystemException {
087                    return _scProductVersionLocalService.deleteSCProductVersion(scProductVersion);
088            }
089    
090            @Override
091            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092                    return _scProductVersionLocalService.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 _scProductVersionLocalService.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.SCProductVersionModelImpl}. 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 _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
129                            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.SCProductVersionModelImpl}. 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 _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
154                            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 _scProductVersionLocalService.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 _scProductVersionLocalService.dynamicQueryCount(dynamicQuery,
185                            projection);
186            }
187    
188            @Override
189            public com.liferay.portlet.softwarecatalog.model.SCProductVersion fetchSCProductVersion(
190                    long productVersionId)
191                    throws com.liferay.portal.kernel.exception.SystemException {
192                    return _scProductVersionLocalService.fetchSCProductVersion(productVersionId);
193            }
194    
195            /**
196            * Returns the s c product version with the primary key.
197            *
198            * @param productVersionId the primary key of the s c product version
199            * @return the s c product version
200            * @throws PortalException if a s c product version 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.SCProductVersion getSCProductVersion(
205                    long productVersionId)
206                    throws com.liferay.portal.kernel.exception.PortalException,
207                            com.liferay.portal.kernel.exception.SystemException {
208                    return _scProductVersionLocalService.getSCProductVersion(productVersionId);
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 _scProductVersionLocalService.getPersistedModel(primaryKeyObj);
217            }
218    
219            /**
220            * Returns a range of all the s c product versions.
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.SCProductVersionModelImpl}. 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 versions
227            * @param end the upper bound of the range of s c product versions (not inclusive)
228            * @return the range of s c product versions
229            * @throws SystemException if a system exception occurred
230            */
231            @Override
232            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
233                    int start, int end)
234                    throws com.liferay.portal.kernel.exception.SystemException {
235                    return _scProductVersionLocalService.getSCProductVersions(start, end);
236            }
237    
238            /**
239            * Returns the number of s c product versions.
240            *
241            * @return the number of s c product versions
242            * @throws SystemException if a system exception occurred
243            */
244            @Override
245            public int getSCProductVersionsCount()
246                    throws com.liferay.portal.kernel.exception.SystemException {
247                    return _scProductVersionLocalService.getSCProductVersionsCount();
248            }
249    
250            /**
251            * Updates the s c product version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
252            *
253            * @param scProductVersion the s c product version
254            * @return the s c product version that was updated
255            * @throws SystemException if a system exception occurred
256            */
257            @Override
258            public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
259                    com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
260                    throws com.liferay.portal.kernel.exception.SystemException {
261                    return _scProductVersionLocalService.updateSCProductVersion(scProductVersion);
262            }
263    
264            /**
265            * @throws SystemException if a system exception occurred
266            */
267            @Override
268            public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
269                    long productVersionId)
270                    throws com.liferay.portal.kernel.exception.SystemException {
271                    _scProductVersionLocalService.addSCFrameworkVersionSCProductVersion(frameworkVersionId,
272                            productVersionId);
273            }
274    
275            /**
276            * @throws SystemException if a system exception occurred
277            */
278            @Override
279            public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
280                    com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
281                    throws com.liferay.portal.kernel.exception.SystemException {
282                    _scProductVersionLocalService.addSCFrameworkVersionSCProductVersion(frameworkVersionId,
283                            scProductVersion);
284            }
285    
286            /**
287            * @throws SystemException if a system exception occurred
288            */
289            @Override
290            public void addSCFrameworkVersionSCProductVersions(
291                    long frameworkVersionId, long[] productVersionIds)
292                    throws com.liferay.portal.kernel.exception.SystemException {
293                    _scProductVersionLocalService.addSCFrameworkVersionSCProductVersions(frameworkVersionId,
294                            productVersionIds);
295            }
296    
297            /**
298            * @throws SystemException if a system exception occurred
299            */
300            @Override
301            public void addSCFrameworkVersionSCProductVersions(
302                    long frameworkVersionId,
303                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
304                    throws com.liferay.portal.kernel.exception.SystemException {
305                    _scProductVersionLocalService.addSCFrameworkVersionSCProductVersions(frameworkVersionId,
306                            SCProductVersions);
307            }
308    
309            /**
310            * @throws SystemException if a system exception occurred
311            */
312            @Override
313            public void clearSCFrameworkVersionSCProductVersions(
314                    long frameworkVersionId)
315                    throws com.liferay.portal.kernel.exception.SystemException {
316                    _scProductVersionLocalService.clearSCFrameworkVersionSCProductVersions(frameworkVersionId);
317            }
318    
319            /**
320            * @throws SystemException if a system exception occurred
321            */
322            @Override
323            public void deleteSCFrameworkVersionSCProductVersion(
324                    long frameworkVersionId, long productVersionId)
325                    throws com.liferay.portal.kernel.exception.SystemException {
326                    _scProductVersionLocalService.deleteSCFrameworkVersionSCProductVersion(frameworkVersionId,
327                            productVersionId);
328            }
329    
330            /**
331            * @throws SystemException if a system exception occurred
332            */
333            @Override
334            public void deleteSCFrameworkVersionSCProductVersion(
335                    long frameworkVersionId,
336                    com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
337                    throws com.liferay.portal.kernel.exception.SystemException {
338                    _scProductVersionLocalService.deleteSCFrameworkVersionSCProductVersion(frameworkVersionId,
339                            scProductVersion);
340            }
341    
342            /**
343            * @throws SystemException if a system exception occurred
344            */
345            @Override
346            public void deleteSCFrameworkVersionSCProductVersions(
347                    long frameworkVersionId, long[] productVersionIds)
348                    throws com.liferay.portal.kernel.exception.SystemException {
349                    _scProductVersionLocalService.deleteSCFrameworkVersionSCProductVersions(frameworkVersionId,
350                            productVersionIds);
351            }
352    
353            /**
354            * @throws SystemException if a system exception occurred
355            */
356            @Override
357            public void deleteSCFrameworkVersionSCProductVersions(
358                    long frameworkVersionId,
359                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
360                    throws com.liferay.portal.kernel.exception.SystemException {
361                    _scProductVersionLocalService.deleteSCFrameworkVersionSCProductVersions(frameworkVersionId,
362                            SCProductVersions);
363            }
364    
365            /**
366            * @throws SystemException if a system exception occurred
367            */
368            @Override
369            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
370                    long frameworkVersionId)
371                    throws com.liferay.portal.kernel.exception.SystemException {
372                    return _scProductVersionLocalService.getSCFrameworkVersionSCProductVersions(frameworkVersionId);
373            }
374    
375            /**
376            * @throws SystemException if a system exception occurred
377            */
378            @Override
379            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
380                    long frameworkVersionId, int start, int end)
381                    throws com.liferay.portal.kernel.exception.SystemException {
382                    return _scProductVersionLocalService.getSCFrameworkVersionSCProductVersions(frameworkVersionId,
383                            start, end);
384            }
385    
386            /**
387            * @throws SystemException if a system exception occurred
388            */
389            @Override
390            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
391                    long frameworkVersionId, int start, int end,
392                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
393                    throws com.liferay.portal.kernel.exception.SystemException {
394                    return _scProductVersionLocalService.getSCFrameworkVersionSCProductVersions(frameworkVersionId,
395                            start, end, orderByComparator);
396            }
397    
398            /**
399            * @throws SystemException if a system exception occurred
400            */
401            @Override
402            public int getSCFrameworkVersionSCProductVersionsCount(
403                    long frameworkVersionId)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    return _scProductVersionLocalService.getSCFrameworkVersionSCProductVersionsCount(frameworkVersionId);
406            }
407    
408            /**
409            * @throws SystemException if a system exception occurred
410            */
411            @Override
412            public boolean hasSCFrameworkVersionSCProductVersion(
413                    long frameworkVersionId, long productVersionId)
414                    throws com.liferay.portal.kernel.exception.SystemException {
415                    return _scProductVersionLocalService.hasSCFrameworkVersionSCProductVersion(frameworkVersionId,
416                            productVersionId);
417            }
418    
419            /**
420            * @throws SystemException if a system exception occurred
421            */
422            @Override
423            public boolean hasSCFrameworkVersionSCProductVersions(
424                    long frameworkVersionId)
425                    throws com.liferay.portal.kernel.exception.SystemException {
426                    return _scProductVersionLocalService.hasSCFrameworkVersionSCProductVersions(frameworkVersionId);
427            }
428    
429            /**
430            * @throws SystemException if a system exception occurred
431            */
432            @Override
433            public void setSCFrameworkVersionSCProductVersions(
434                    long frameworkVersionId, long[] productVersionIds)
435                    throws com.liferay.portal.kernel.exception.SystemException {
436                    _scProductVersionLocalService.setSCFrameworkVersionSCProductVersions(frameworkVersionId,
437                            productVersionIds);
438            }
439    
440            /**
441            * Returns the Spring bean ID for this bean.
442            *
443            * @return the Spring bean ID for this bean
444            */
445            @Override
446            public java.lang.String getBeanIdentifier() {
447                    return _scProductVersionLocalService.getBeanIdentifier();
448            }
449    
450            /**
451            * Sets the Spring bean ID for this bean.
452            *
453            * @param beanIdentifier the Spring bean ID for this bean
454            */
455            @Override
456            public void setBeanIdentifier(java.lang.String beanIdentifier) {
457                    _scProductVersionLocalService.setBeanIdentifier(beanIdentifier);
458            }
459    
460            @Override
461            public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
462                    long userId, long productEntryId, java.lang.String version,
463                    java.lang.String changeLog, java.lang.String downloadPageURL,
464                    java.lang.String directDownloadURL, boolean testDirectDownloadURL,
465                    boolean repoStoreArtifact, long[] frameworkVersionIds,
466                    com.liferay.portal.service.ServiceContext serviceContext)
467                    throws com.liferay.portal.kernel.exception.PortalException,
468                            com.liferay.portal.kernel.exception.SystemException {
469                    return _scProductVersionLocalService.addProductVersion(userId,
470                            productEntryId, version, changeLog, downloadPageURL,
471                            directDownloadURL, testDirectDownloadURL, repoStoreArtifact,
472                            frameworkVersionIds, serviceContext);
473            }
474    
475            @Override
476            public void deleteProductVersion(long productVersionId)
477                    throws com.liferay.portal.kernel.exception.PortalException,
478                            com.liferay.portal.kernel.exception.SystemException {
479                    _scProductVersionLocalService.deleteProductVersion(productVersionId);
480            }
481    
482            @Override
483            public void deleteProductVersion(
484                    com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
485                    throws com.liferay.portal.kernel.exception.SystemException {
486                    _scProductVersionLocalService.deleteProductVersion(productVersion);
487            }
488    
489            @Override
490            public void deleteProductVersions(long productEntryId)
491                    throws com.liferay.portal.kernel.exception.SystemException {
492                    _scProductVersionLocalService.deleteProductVersions(productEntryId);
493            }
494    
495            @Override
496            public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
497                    long productVersionId)
498                    throws com.liferay.portal.kernel.exception.PortalException,
499                            com.liferay.portal.kernel.exception.SystemException {
500                    return _scProductVersionLocalService.getProductVersion(productVersionId);
501            }
502    
503            @Override
504            public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
505                    java.lang.String directDownloadURL)
506                    throws com.liferay.portal.kernel.exception.PortalException,
507                            com.liferay.portal.kernel.exception.SystemException {
508                    return _scProductVersionLocalService.getProductVersionByDirectDownloadURL(directDownloadURL);
509            }
510    
511            @Override
512            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
513                    long productEntryId, int start, int end)
514                    throws com.liferay.portal.kernel.exception.SystemException {
515                    return _scProductVersionLocalService.getProductVersions(productEntryId,
516                            start, end);
517            }
518    
519            @Override
520            public int getProductVersionsCount(long productEntryId)
521                    throws com.liferay.portal.kernel.exception.SystemException {
522                    return _scProductVersionLocalService.getProductVersionsCount(productEntryId);
523            }
524    
525            @Override
526            public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
527                    long productVersionId, java.lang.String version,
528                    java.lang.String changeLog, java.lang.String downloadPageURL,
529                    java.lang.String directDownloadURL, boolean testDirectDownloadURL,
530                    boolean repoStoreArtifact, long[] frameworkVersionIds)
531                    throws com.liferay.portal.kernel.exception.PortalException,
532                            com.liferay.portal.kernel.exception.SystemException {
533                    return _scProductVersionLocalService.updateProductVersion(productVersionId,
534                            version, changeLog, downloadPageURL, directDownloadURL,
535                            testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds);
536            }
537    
538            /**
539             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
540             */
541            public SCProductVersionLocalService getWrappedSCProductVersionLocalService() {
542                    return _scProductVersionLocalService;
543            }
544    
545            /**
546             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
547             */
548            public void setWrappedSCProductVersionLocalService(
549                    SCProductVersionLocalService scProductVersionLocalService) {
550                    _scProductVersionLocalService = scProductVersionLocalService;
551            }
552    
553            @Override
554            public SCProductVersionLocalService getWrappedService() {
555                    return _scProductVersionLocalService;
556            }
557    
558            @Override
559            public void setWrappedService(
560                    SCProductVersionLocalService scProductVersionLocalService) {
561                    _scProductVersionLocalService = scProductVersionLocalService;
562            }
563    
564            private SCProductVersionLocalService _scProductVersionLocalService;
565    }