1
14
15 package com.liferay.portlet.softwarecatalog.service;
16
17
33 public class SCProductEntryServiceWrapper implements SCProductEntryService {
34 public SCProductEntryServiceWrapper(
35 SCProductEntryService scProductEntryService) {
36 _scProductEntryService = scProductEntryService;
37 }
38
39 public com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
40 java.lang.String name, java.lang.String type, java.lang.String tags,
41 java.lang.String shortDescription, java.lang.String longDescription,
42 java.lang.String pageURL, java.lang.String author,
43 java.lang.String repoGroupId, java.lang.String repoArtifactId,
44 long[] licenseIds, java.util.List<byte[]> thumbnails,
45 java.util.List<byte[]> fullImages,
46 com.liferay.portal.service.ServiceContext serviceContext)
47 throws com.liferay.portal.PortalException,
48 com.liferay.portal.SystemException {
49 return _scProductEntryService.addProductEntry(name, type, tags,
50 shortDescription, longDescription, pageURL, author, repoGroupId,
51 repoArtifactId, licenseIds, thumbnails, fullImages, serviceContext);
52 }
53
54 public void deleteProductEntry(long productEntryId)
55 throws com.liferay.portal.PortalException,
56 com.liferay.portal.SystemException {
57 _scProductEntryService.deleteProductEntry(productEntryId);
58 }
59
60 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
61 long productEntryId)
62 throws com.liferay.portal.PortalException,
63 com.liferay.portal.SystemException {
64 return _scProductEntryService.getProductEntry(productEntryId);
65 }
66
67 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
68 long productEntryId, java.lang.String name, java.lang.String type,
69 java.lang.String tags, java.lang.String shortDescription,
70 java.lang.String longDescription, java.lang.String pageURL,
71 java.lang.String author, java.lang.String repoGroupId,
72 java.lang.String repoArtifactId, long[] licenseIds,
73 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
74 throws com.liferay.portal.PortalException,
75 com.liferay.portal.SystemException {
76 return _scProductEntryService.updateProductEntry(productEntryId, name,
77 type, tags, shortDescription, longDescription, pageURL, author,
78 repoGroupId, repoArtifactId, licenseIds, thumbnails, fullImages);
79 }
80
81 public SCProductEntryService getWrappedSCProductEntryService() {
82 return _scProductEntryService;
83 }
84
85 private SCProductEntryService _scProductEntryService;
86 }