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