001    /**
002     * Copyright (c) 2000-present 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 aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link SCProductEntryLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see SCProductEntryLocalService
026     * @generated
027     */
028    @ProviderType
029    public class SCProductEntryLocalServiceWrapper
030            implements SCProductEntryLocalService,
031                    ServiceWrapper<SCProductEntryLocalService> {
032            public SCProductEntryLocalServiceWrapper(
033                    SCProductEntryLocalService scProductEntryLocalService) {
034                    _scProductEntryLocalService = scProductEntryLocalService;
035            }
036    
037            @Override
038            public com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
039                    long userId, java.lang.String name, java.lang.String type,
040                    java.lang.String tags, java.lang.String shortDescription,
041                    java.lang.String longDescription, java.lang.String pageURL,
042                    java.lang.String author, java.lang.String repoGroupId,
043                    java.lang.String repoArtifactId, long[] licenseIds,
044                    java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages,
045                    com.liferay.portal.service.ServiceContext serviceContext)
046                    throws com.liferay.portal.kernel.exception.PortalException {
047                    return _scProductEntryLocalService.addProductEntry(userId, name, type,
048                            tags, shortDescription, longDescription, pageURL, author,
049                            repoGroupId, repoArtifactId, licenseIds, thumbnails, fullImages,
050                            serviceContext);
051            }
052    
053            @Override
054            public void addProductEntryResources(
055                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
056                    boolean addGroupPermissions, boolean addGuestPermissions)
057                    throws com.liferay.portal.kernel.exception.PortalException {
058                    _scProductEntryLocalService.addProductEntryResources(productEntry,
059                            addGroupPermissions, addGuestPermissions);
060            }
061    
062            @Override
063            public void addProductEntryResources(
064                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
065                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
066                    throws com.liferay.portal.kernel.exception.PortalException {
067                    _scProductEntryLocalService.addProductEntryResources(productEntry,
068                            groupPermissions, guestPermissions);
069            }
070    
071            @Override
072            public void addProductEntryResources(long productEntryId,
073                    boolean addGroupPermissions, boolean addGuestPermissions)
074                    throws com.liferay.portal.kernel.exception.PortalException {
075                    _scProductEntryLocalService.addProductEntryResources(productEntryId,
076                            addGroupPermissions, addGuestPermissions);
077            }
078    
079            @Override
080            public void addProductEntryResources(long productEntryId,
081                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
082                    throws com.liferay.portal.kernel.exception.PortalException {
083                    _scProductEntryLocalService.addProductEntryResources(productEntryId,
084                            groupPermissions, guestPermissions);
085            }
086    
087            @Override
088            public void addSCLicenseSCProductEntries(long licenseId,
089                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries) {
090                    _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
091                            SCProductEntries);
092            }
093    
094            @Override
095            public void addSCLicenseSCProductEntries(long licenseId,
096                    long[] productEntryIds) {
097                    _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
098                            productEntryIds);
099            }
100    
101            @Override
102            public void addSCLicenseSCProductEntry(long licenseId, long productEntryId) {
103                    _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
104                            productEntryId);
105            }
106    
107            @Override
108            public void addSCLicenseSCProductEntry(long licenseId,
109                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
110                    _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
111                            scProductEntry);
112            }
113    
114            /**
115            * Adds the s c product entry to the database. Also notifies the appropriate model listeners.
116            *
117            * @param scProductEntry the s c product entry
118            * @return the s c product entry that was added
119            */
120            @Override
121            public com.liferay.portlet.softwarecatalog.model.SCProductEntry addSCProductEntry(
122                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
123                    return _scProductEntryLocalService.addSCProductEntry(scProductEntry);
124            }
125    
126            @Override
127            public void clearSCLicenseSCProductEntries(long licenseId) {
128                    _scProductEntryLocalService.clearSCLicenseSCProductEntries(licenseId);
129            }
130    
131            /**
132            * Creates a new s c product entry with the primary key. Does not add the s c product entry to the database.
133            *
134            * @param productEntryId the primary key for the new s c product entry
135            * @return the new s c product entry
136            */
137            @Override
138            public com.liferay.portlet.softwarecatalog.model.SCProductEntry createSCProductEntry(
139                    long productEntryId) {
140                    return _scProductEntryLocalService.createSCProductEntry(productEntryId);
141            }
142    
143            /**
144            * @throws PortalException
145            */
146            @Override
147            public com.liferay.portal.model.PersistedModel deletePersistedModel(
148                    com.liferay.portal.model.PersistedModel persistedModel)
149                    throws com.liferay.portal.kernel.exception.PortalException {
150                    return _scProductEntryLocalService.deletePersistedModel(persistedModel);
151            }
152    
153            @Override
154            public void deleteProductEntries(long groupId)
155                    throws com.liferay.portal.kernel.exception.PortalException {
156                    _scProductEntryLocalService.deleteProductEntries(groupId);
157            }
158    
159            @Override
160            public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
161                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
162                    throws com.liferay.portal.kernel.exception.PortalException {
163                    return _scProductEntryLocalService.deleteProductEntry(productEntry);
164            }
165    
166            @Override
167            public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
168                    long productEntryId)
169                    throws com.liferay.portal.kernel.exception.PortalException {
170                    return _scProductEntryLocalService.deleteProductEntry(productEntryId);
171            }
172    
173            @Override
174            public void deleteSCLicenseSCProductEntries(long licenseId,
175                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries) {
176                    _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
177                            SCProductEntries);
178            }
179    
180            @Override
181            public void deleteSCLicenseSCProductEntries(long licenseId,
182                    long[] productEntryIds) {
183                    _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
184                            productEntryIds);
185            }
186    
187            @Override
188            public void deleteSCLicenseSCProductEntry(long licenseId,
189                    long productEntryId) {
190                    _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
191                            productEntryId);
192            }
193    
194            @Override
195            public void deleteSCLicenseSCProductEntry(long licenseId,
196                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
197                    _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
198                            scProductEntry);
199            }
200    
201            /**
202            * Deletes the s c product entry with the primary key from the database. Also notifies the appropriate model listeners.
203            *
204            * @param productEntryId the primary key of the s c product entry
205            * @return the s c product entry that was removed
206            * @throws PortalException if a s c product entry with the primary key could not be found
207            */
208            @Override
209            public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteSCProductEntry(
210                    long productEntryId)
211                    throws com.liferay.portal.kernel.exception.PortalException {
212                    return _scProductEntryLocalService.deleteSCProductEntry(productEntryId);
213            }
214    
215            /**
216            * Deletes the s c product entry from the database. Also notifies the appropriate model listeners.
217            *
218            * @param scProductEntry the s c product entry
219            * @return the s c product entry that was removed
220            */
221            @Override
222            public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteSCProductEntry(
223                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
224                    return _scProductEntryLocalService.deleteSCProductEntry(scProductEntry);
225            }
226    
227            @Override
228            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
229                    return _scProductEntryLocalService.dynamicQuery();
230            }
231    
232            /**
233            * Performs a dynamic query on the database and returns the matching rows.
234            *
235            * @param dynamicQuery the dynamic query
236            * @return the matching rows
237            */
238            @Override
239            public <T> java.util.List<T> dynamicQuery(
240                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
241                    return _scProductEntryLocalService.dynamicQuery(dynamicQuery);
242            }
243    
244            /**
245            * Performs a dynamic query on the database and returns a range of the matching rows.
246            *
247            * <p>
248            * 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.SCProductEntryModelImpl}. 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.
249            * </p>
250            *
251            * @param dynamicQuery the dynamic query
252            * @param start the lower bound of the range of model instances
253            * @param end the upper bound of the range of model instances (not inclusive)
254            * @return the range of matching rows
255            */
256            @Override
257            public <T> java.util.List<T> dynamicQuery(
258                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
259                    int end) {
260                    return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start, end);
261            }
262    
263            /**
264            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
265            *
266            * <p>
267            * 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.SCProductEntryModelImpl}. 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.
268            * </p>
269            *
270            * @param dynamicQuery the dynamic query
271            * @param start the lower bound of the range of model instances
272            * @param end the upper bound of the range of model instances (not inclusive)
273            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
274            * @return the ordered range of matching rows
275            */
276            @Override
277            public <T> java.util.List<T> dynamicQuery(
278                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
279                    int end,
280                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
281                    return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start,
282                            end, orderByComparator);
283            }
284    
285            /**
286            * Returns the number of rows matching the dynamic query.
287            *
288            * @param dynamicQuery the dynamic query
289            * @return the number of rows matching the dynamic query
290            */
291            @Override
292            public long dynamicQueryCount(
293                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
294                    return _scProductEntryLocalService.dynamicQueryCount(dynamicQuery);
295            }
296    
297            /**
298            * Returns the number of rows matching the dynamic query.
299            *
300            * @param dynamicQuery the dynamic query
301            * @param projection the projection to apply to the query
302            * @return the number of rows matching the dynamic query
303            */
304            @Override
305            public long dynamicQueryCount(
306                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
307                    com.liferay.portal.kernel.dao.orm.Projection projection) {
308                    return _scProductEntryLocalService.dynamicQueryCount(dynamicQuery,
309                            projection);
310            }
311    
312            @Override
313            public com.liferay.portlet.softwarecatalog.model.SCProductEntry fetchSCProductEntry(
314                    long productEntryId) {
315                    return _scProductEntryLocalService.fetchSCProductEntry(productEntryId);
316            }
317    
318            @Override
319            public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
320                    return _scProductEntryLocalService.getActionableDynamicQuery();
321            }
322    
323            /**
324            * Returns the Spring bean ID for this bean.
325            *
326            * @return the Spring bean ID for this bean
327            */
328            @Override
329            public java.lang.String getBeanIdentifier() {
330                    return _scProductEntryLocalService.getBeanIdentifier();
331            }
332    
333            @Override
334            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getCompanyProductEntries(
335                    long companyId, int start, int end) {
336                    return _scProductEntryLocalService.getCompanyProductEntries(companyId,
337                            start, end);
338            }
339    
340            @Override
341            public int getCompanyProductEntriesCount(long companyId) {
342                    return _scProductEntryLocalService.getCompanyProductEntriesCount(companyId);
343            }
344    
345            @Override
346            public com.liferay.portal.model.PersistedModel getPersistedModel(
347                    java.io.Serializable primaryKeyObj)
348                    throws com.liferay.portal.kernel.exception.PortalException {
349                    return _scProductEntryLocalService.getPersistedModel(primaryKeyObj);
350            }
351    
352            @Override
353            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
354                    long groupId, int start, int end) {
355                    return _scProductEntryLocalService.getProductEntries(groupId, start, end);
356            }
357    
358            @Override
359            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
360                    long groupId, int start, int end,
361                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.softwarecatalog.model.SCProductEntry> obc) {
362                    return _scProductEntryLocalService.getProductEntries(groupId, start,
363                            end, obc);
364            }
365    
366            @Override
367            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
368                    long groupId, long userId, int start, int end) {
369                    return _scProductEntryLocalService.getProductEntries(groupId, userId,
370                            start, end);
371            }
372    
373            @Override
374            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
375                    long groupId, long userId, int start, int end,
376                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.softwarecatalog.model.SCProductEntry> obc) {
377                    return _scProductEntryLocalService.getProductEntries(groupId, userId,
378                            start, end, obc);
379            }
380    
381            @Override
382            public int getProductEntriesCount(long groupId) {
383                    return _scProductEntryLocalService.getProductEntriesCount(groupId);
384            }
385    
386            @Override
387            public int getProductEntriesCount(long groupId, long userId) {
388                    return _scProductEntryLocalService.getProductEntriesCount(groupId,
389                            userId);
390            }
391    
392            @Override
393            public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
394                    long productEntryId)
395                    throws com.liferay.portal.kernel.exception.PortalException {
396                    return _scProductEntryLocalService.getProductEntry(productEntryId);
397            }
398    
399            @Override
400            public java.lang.String getRepositoryXML(long groupId,
401                    java.lang.String baseImageURL, java.util.Date oldestDate,
402                    int maxNumOfVersions, java.util.Properties repoSettings) {
403                    return _scProductEntryLocalService.getRepositoryXML(groupId,
404                            baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
405            }
406    
407            @Override
408            public java.lang.String getRepositoryXML(long groupId,
409                    java.lang.String version, java.lang.String baseImageURL,
410                    java.util.Date oldestDate, int maxNumOfVersions,
411                    java.util.Properties repoSettings) {
412                    return _scProductEntryLocalService.getRepositoryXML(groupId, version,
413                            baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
414            }
415    
416            /**
417            * Returns the licenseIds of the s c licenses associated with the s c product entry.
418            *
419            * @param productEntryId the productEntryId of the s c product entry
420            * @return long[] the licenseIds of s c licenses associated with the s c product entry
421            */
422            @Override
423            public long[] getSCLicensePrimaryKeys(long productEntryId) {
424                    return _scProductEntryLocalService.getSCLicensePrimaryKeys(productEntryId);
425            }
426    
427            @Override
428            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
429                    long licenseId) {
430                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId);
431            }
432    
433            @Override
434            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
435                    long licenseId, int start, int end) {
436                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
437                            start, end);
438            }
439    
440            @Override
441            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
442                    long licenseId, int start, int end,
443                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.softwarecatalog.model.SCProductEntry> orderByComparator) {
444                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
445                            start, end, orderByComparator);
446            }
447    
448            @Override
449            public int getSCLicenseSCProductEntriesCount(long licenseId) {
450                    return _scProductEntryLocalService.getSCLicenseSCProductEntriesCount(licenseId);
451            }
452    
453            /**
454            * Returns a range of all the s c product entries.
455            *
456            * <p>
457            * 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.SCProductEntryModelImpl}. 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.
458            * </p>
459            *
460            * @param start the lower bound of the range of s c product entries
461            * @param end the upper bound of the range of s c product entries (not inclusive)
462            * @return the range of s c product entries
463            */
464            @Override
465            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCProductEntries(
466                    int start, int end) {
467                    return _scProductEntryLocalService.getSCProductEntries(start, end);
468            }
469    
470            /**
471            * Returns the number of s c product entries.
472            *
473            * @return the number of s c product entries
474            */
475            @Override
476            public int getSCProductEntriesCount() {
477                    return _scProductEntryLocalService.getSCProductEntriesCount();
478            }
479    
480            /**
481            * Returns the s c product entry with the primary key.
482            *
483            * @param productEntryId the primary key of the s c product entry
484            * @return the s c product entry
485            * @throws PortalException if a s c product entry with the primary key could not be found
486            */
487            @Override
488            public com.liferay.portlet.softwarecatalog.model.SCProductEntry getSCProductEntry(
489                    long productEntryId)
490                    throws com.liferay.portal.kernel.exception.PortalException {
491                    return _scProductEntryLocalService.getSCProductEntry(productEntryId);
492            }
493    
494            @Override
495            public boolean hasSCLicenseSCProductEntries(long licenseId) {
496                    return _scProductEntryLocalService.hasSCLicenseSCProductEntries(licenseId);
497            }
498    
499            @Override
500            public boolean hasSCLicenseSCProductEntry(long licenseId,
501                    long productEntryId) {
502                    return _scProductEntryLocalService.hasSCLicenseSCProductEntry(licenseId,
503                            productEntryId);
504            }
505    
506            /**
507            * Sets the Spring bean ID for this bean.
508            *
509            * @param beanIdentifier the Spring bean ID for this bean
510            */
511            @Override
512            public void setBeanIdentifier(java.lang.String beanIdentifier) {
513                    _scProductEntryLocalService.setBeanIdentifier(beanIdentifier);
514            }
515    
516            @Override
517            public void setSCLicenseSCProductEntries(long licenseId,
518                    long[] productEntryIds) {
519                    _scProductEntryLocalService.setSCLicenseSCProductEntries(licenseId,
520                            productEntryIds);
521            }
522    
523            @Override
524            public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
525                    long productEntryId, java.lang.String name, java.lang.String type,
526                    java.lang.String tags, java.lang.String shortDescription,
527                    java.lang.String longDescription, java.lang.String pageURL,
528                    java.lang.String author, java.lang.String repoGroupId,
529                    java.lang.String repoArtifactId, long[] licenseIds,
530                    java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
531                    throws com.liferay.portal.kernel.exception.PortalException {
532                    return _scProductEntryLocalService.updateProductEntry(productEntryId,
533                            name, type, tags, shortDescription, longDescription, pageURL,
534                            author, repoGroupId, repoArtifactId, licenseIds, thumbnails,
535                            fullImages);
536            }
537    
538            /**
539            * Updates the s c product entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
540            *
541            * @param scProductEntry the s c product entry
542            * @return the s c product entry that was updated
543            */
544            @Override
545            public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
546                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry) {
547                    return _scProductEntryLocalService.updateSCProductEntry(scProductEntry);
548            }
549    
550            /**
551             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
552             */
553            @Deprecated
554            public SCProductEntryLocalService getWrappedSCProductEntryLocalService() {
555                    return _scProductEntryLocalService;
556            }
557    
558            /**
559             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
560             */
561            @Deprecated
562            public void setWrappedSCProductEntryLocalService(
563                    SCProductEntryLocalService scProductEntryLocalService) {
564                    _scProductEntryLocalService = scProductEntryLocalService;
565            }
566    
567            @Override
568            public SCProductEntryLocalService getWrappedService() {
569                    return _scProductEntryLocalService;
570            }
571    
572            @Override
573            public void setWrappedService(
574                    SCProductEntryLocalService scProductEntryLocalService) {
575                    _scProductEntryLocalService = scProductEntryLocalService;
576            }
577    
578            private SCProductEntryLocalService _scProductEntryLocalService;
579    }