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.
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.
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.
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            * Updates the s c product entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
235            *
236            * @param scProductEntry the s c product entry
237            * @param merge whether to merge the s c product entry with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
238            * @return the s c product entry that was updated
239            * @throws SystemException if a system exception occurred
240            */
241            public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
242                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry,
243                    boolean merge)
244                    throws com.liferay.portal.kernel.exception.SystemException {
245                    return _scProductEntryLocalService.updateSCProductEntry(scProductEntry,
246                            merge);
247            }
248    
249            /**
250            * @throws SystemException if a system exception occurred
251            */
252            public void addSCLicenseSCProductEntry(long licenseId, long productEntryId)
253                    throws com.liferay.portal.kernel.exception.SystemException {
254                    _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
255                            productEntryId);
256            }
257    
258            /**
259            * @throws SystemException if a system exception occurred
260            */
261            public void addSCLicenseSCProductEntry(long licenseId,
262                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
263                    throws com.liferay.portal.kernel.exception.SystemException {
264                    _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
265                            scProductEntry);
266            }
267    
268            /**
269            * @throws SystemException if a system exception occurred
270            */
271            public void addSCLicenseSCProductEntries(long licenseId,
272                    long[] productEntryIds)
273                    throws com.liferay.portal.kernel.exception.SystemException {
274                    _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
275                            productEntryIds);
276            }
277    
278            /**
279            * @throws SystemException if a system exception occurred
280            */
281            public void addSCLicenseSCProductEntries(long licenseId,
282                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries)
283                    throws com.liferay.portal.kernel.exception.SystemException {
284                    _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
285                            SCProductEntries);
286            }
287    
288            /**
289            * @throws SystemException if a system exception occurred
290            */
291            public void clearSCLicenseSCProductEntries(long licenseId)
292                    throws com.liferay.portal.kernel.exception.SystemException {
293                    _scProductEntryLocalService.clearSCLicenseSCProductEntries(licenseId);
294            }
295    
296            /**
297            * @throws SystemException if a system exception occurred
298            */
299            public void deleteSCLicenseSCProductEntry(long licenseId,
300                    long productEntryId)
301                    throws com.liferay.portal.kernel.exception.SystemException {
302                    _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
303                            productEntryId);
304            }
305    
306            /**
307            * @throws SystemException if a system exception occurred
308            */
309            public void deleteSCLicenseSCProductEntry(long licenseId,
310                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
311                    throws com.liferay.portal.kernel.exception.SystemException {
312                    _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
313                            scProductEntry);
314            }
315    
316            /**
317            * @throws SystemException if a system exception occurred
318            */
319            public void deleteSCLicenseSCProductEntries(long licenseId,
320                    long[] productEntryIds)
321                    throws com.liferay.portal.kernel.exception.SystemException {
322                    _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
323                            productEntryIds);
324            }
325    
326            /**
327            * @throws SystemException if a system exception occurred
328            */
329            public void deleteSCLicenseSCProductEntries(long licenseId,
330                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries)
331                    throws com.liferay.portal.kernel.exception.SystemException {
332                    _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
333                            SCProductEntries);
334            }
335    
336            /**
337            * @throws SystemException if a system exception occurred
338            */
339            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
340                    long licenseId)
341                    throws com.liferay.portal.kernel.exception.SystemException {
342                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId);
343            }
344    
345            /**
346            * @throws SystemException if a system exception occurred
347            */
348            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
349                    long licenseId, int start, int end)
350                    throws com.liferay.portal.kernel.exception.SystemException {
351                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
352                            start, end);
353            }
354    
355            /**
356            * @throws SystemException if a system exception occurred
357            */
358            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
359                    long licenseId, int start, int end,
360                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
361                    throws com.liferay.portal.kernel.exception.SystemException {
362                    return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
363                            start, end, orderByComparator);
364            }
365    
366            /**
367            * @throws SystemException if a system exception occurred
368            */
369            public int getSCLicenseSCProductEntriesCount(long licenseId)
370                    throws com.liferay.portal.kernel.exception.SystemException {
371                    return _scProductEntryLocalService.getSCLicenseSCProductEntriesCount(licenseId);
372            }
373    
374            /**
375            * @throws SystemException if a system exception occurred
376            */
377            public boolean hasSCLicenseSCProductEntry(long licenseId,
378                    long productEntryId)
379                    throws com.liferay.portal.kernel.exception.SystemException {
380                    return _scProductEntryLocalService.hasSCLicenseSCProductEntry(licenseId,
381                            productEntryId);
382            }
383    
384            /**
385            * @throws SystemException if a system exception occurred
386            */
387            public boolean hasSCLicenseSCProductEntries(long licenseId)
388                    throws com.liferay.portal.kernel.exception.SystemException {
389                    return _scProductEntryLocalService.hasSCLicenseSCProductEntries(licenseId);
390            }
391    
392            /**
393            * @throws SystemException if a system exception occurred
394            */
395            public void setSCLicenseSCProductEntries(long licenseId,
396                    long[] productEntryIds)
397                    throws com.liferay.portal.kernel.exception.SystemException {
398                    _scProductEntryLocalService.setSCLicenseSCProductEntries(licenseId,
399                            productEntryIds);
400            }
401    
402            /**
403            * Returns the Spring bean ID for this bean.
404            *
405            * @return the Spring bean ID for this bean
406            */
407            public java.lang.String getBeanIdentifier() {
408                    return _scProductEntryLocalService.getBeanIdentifier();
409            }
410    
411            /**
412            * Sets the Spring bean ID for this bean.
413            *
414            * @param beanIdentifier the Spring bean ID for this bean
415            */
416            public void setBeanIdentifier(java.lang.String beanIdentifier) {
417                    _scProductEntryLocalService.setBeanIdentifier(beanIdentifier);
418            }
419    
420            public com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
421                    long userId, java.lang.String name, java.lang.String type,
422                    java.lang.String tags, java.lang.String shortDescription,
423                    java.lang.String longDescription, java.lang.String pageURL,
424                    java.lang.String author, java.lang.String repoGroupId,
425                    java.lang.String repoArtifactId, long[] licenseIds,
426                    java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages,
427                    com.liferay.portal.service.ServiceContext serviceContext)
428                    throws com.liferay.portal.kernel.exception.PortalException,
429                            com.liferay.portal.kernel.exception.SystemException {
430                    return _scProductEntryLocalService.addProductEntry(userId, name, type,
431                            tags, shortDescription, longDescription, pageURL, author,
432                            repoGroupId, repoArtifactId, licenseIds, thumbnails, fullImages,
433                            serviceContext);
434            }
435    
436            public void addProductEntryResources(long productEntryId,
437                    boolean addGroupPermissions, boolean addGuestPermissions)
438                    throws com.liferay.portal.kernel.exception.PortalException,
439                            com.liferay.portal.kernel.exception.SystemException {
440                    _scProductEntryLocalService.addProductEntryResources(productEntryId,
441                            addGroupPermissions, addGuestPermissions);
442            }
443    
444            public void addProductEntryResources(long productEntryId,
445                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
446                    throws com.liferay.portal.kernel.exception.PortalException,
447                            com.liferay.portal.kernel.exception.SystemException {
448                    _scProductEntryLocalService.addProductEntryResources(productEntryId,
449                            groupPermissions, guestPermissions);
450            }
451    
452            public void addProductEntryResources(
453                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
454                    boolean addGroupPermissions, boolean addGuestPermissions)
455                    throws com.liferay.portal.kernel.exception.PortalException,
456                            com.liferay.portal.kernel.exception.SystemException {
457                    _scProductEntryLocalService.addProductEntryResources(productEntry,
458                            addGroupPermissions, addGuestPermissions);
459            }
460    
461            public void addProductEntryResources(
462                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
463                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
464                    throws com.liferay.portal.kernel.exception.PortalException,
465                            com.liferay.portal.kernel.exception.SystemException {
466                    _scProductEntryLocalService.addProductEntryResources(productEntry,
467                            groupPermissions, guestPermissions);
468            }
469    
470            public void deleteProductEntries(long groupId)
471                    throws com.liferay.portal.kernel.exception.PortalException,
472                            com.liferay.portal.kernel.exception.SystemException {
473                    _scProductEntryLocalService.deleteProductEntries(groupId);
474            }
475    
476            public void deleteProductEntry(long productEntryId)
477                    throws com.liferay.portal.kernel.exception.PortalException,
478                            com.liferay.portal.kernel.exception.SystemException {
479                    _scProductEntryLocalService.deleteProductEntry(productEntryId);
480            }
481    
482            public void deleteProductEntry(
483                    com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
484                    throws com.liferay.portal.kernel.exception.PortalException,
485                            com.liferay.portal.kernel.exception.SystemException {
486                    _scProductEntryLocalService.deleteProductEntry(productEntry);
487            }
488    
489            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getCompanyProductEntries(
490                    long companyId, int start, int end)
491                    throws com.liferay.portal.kernel.exception.SystemException {
492                    return _scProductEntryLocalService.getCompanyProductEntries(companyId,
493                            start, end);
494            }
495    
496            public int getCompanyProductEntriesCount(long companyId)
497                    throws com.liferay.portal.kernel.exception.SystemException {
498                    return _scProductEntryLocalService.getCompanyProductEntriesCount(companyId);
499            }
500    
501            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
502                    long groupId, int start, int end)
503                    throws com.liferay.portal.kernel.exception.SystemException {
504                    return _scProductEntryLocalService.getProductEntries(groupId, start, end);
505            }
506    
507            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
508                    long groupId, 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, start,
512                            end, obc);
513            }
514    
515            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
516                    long groupId, long userId, int start, int end)
517                    throws com.liferay.portal.kernel.exception.SystemException {
518                    return _scProductEntryLocalService.getProductEntries(groupId, userId,
519                            start, end);
520            }
521    
522            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
523                    long groupId, long userId, int start, int end,
524                    com.liferay.portal.kernel.util.OrderByComparator obc)
525                    throws com.liferay.portal.kernel.exception.SystemException {
526                    return _scProductEntryLocalService.getProductEntries(groupId, userId,
527                            start, end, obc);
528            }
529    
530            public int getProductEntriesCount(long groupId)
531                    throws com.liferay.portal.kernel.exception.SystemException {
532                    return _scProductEntryLocalService.getProductEntriesCount(groupId);
533            }
534    
535            public int getProductEntriesCount(long groupId, long userId)
536                    throws com.liferay.portal.kernel.exception.SystemException {
537                    return _scProductEntryLocalService.getProductEntriesCount(groupId,
538                            userId);
539            }
540    
541            public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
542                    long productEntryId)
543                    throws com.liferay.portal.kernel.exception.PortalException,
544                            com.liferay.portal.kernel.exception.SystemException {
545                    return _scProductEntryLocalService.getProductEntry(productEntryId);
546            }
547    
548            public java.lang.String getRepositoryXML(long groupId,
549                    java.lang.String baseImageURL, java.util.Date oldestDate,
550                    int maxNumOfVersions, java.util.Properties repoSettings)
551                    throws com.liferay.portal.kernel.exception.SystemException {
552                    return _scProductEntryLocalService.getRepositoryXML(groupId,
553                            baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
554            }
555    
556            public java.lang.String getRepositoryXML(long groupId,
557                    java.lang.String version, java.lang.String baseImageURL,
558                    java.util.Date oldestDate, int maxNumOfVersions,
559                    java.util.Properties repoSettings)
560                    throws com.liferay.portal.kernel.exception.SystemException {
561                    return _scProductEntryLocalService.getRepositoryXML(groupId, version,
562                            baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
563            }
564    
565            public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
566                    long productEntryId, java.lang.String name, java.lang.String type,
567                    java.lang.String tags, java.lang.String shortDescription,
568                    java.lang.String longDescription, java.lang.String pageURL,
569                    java.lang.String author, java.lang.String repoGroupId,
570                    java.lang.String repoArtifactId, long[] licenseIds,
571                    java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
572                    throws com.liferay.portal.kernel.exception.PortalException,
573                            com.liferay.portal.kernel.exception.SystemException {
574                    return _scProductEntryLocalService.updateProductEntry(productEntryId,
575                            name, type, tags, shortDescription, longDescription, pageURL,
576                            author, repoGroupId, repoArtifactId, licenseIds, thumbnails,
577                            fullImages);
578            }
579    
580            /**
581             * @deprecated Renamed to {@link #getWrappedService}
582             */
583            public SCProductEntryLocalService getWrappedSCProductEntryLocalService() {
584                    return _scProductEntryLocalService;
585            }
586    
587            /**
588             * @deprecated Renamed to {@link #setWrappedService}
589             */
590            public void setWrappedSCProductEntryLocalService(
591                    SCProductEntryLocalService scProductEntryLocalService) {
592                    _scProductEntryLocalService = scProductEntryLocalService;
593            }
594    
595            public SCProductEntryLocalService getWrappedService() {
596                    return _scProductEntryLocalService;
597            }
598    
599            public void setWrappedService(
600                    SCProductEntryLocalService scProductEntryLocalService) {
601                    _scProductEntryLocalService = scProductEntryLocalService;
602            }
603    
604            private SCProductEntryLocalService _scProductEntryLocalService;
605    }