1
14
15 package com.liferay.portlet.softwarecatalog.service;
16
17
33 public class SCProductVersionLocalServiceWrapper
34 implements SCProductVersionLocalService {
35 public SCProductVersionLocalServiceWrapper(
36 SCProductVersionLocalService scProductVersionLocalService) {
37 _scProductVersionLocalService = scProductVersionLocalService;
38 }
39
40 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
41 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
42 throws com.liferay.portal.SystemException {
43 return _scProductVersionLocalService.addSCProductVersion(scProductVersion);
44 }
45
46 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
47 long productVersionId) {
48 return _scProductVersionLocalService.createSCProductVersion(productVersionId);
49 }
50
51 public void deleteSCProductVersion(long productVersionId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _scProductVersionLocalService.deleteSCProductVersion(productVersionId);
55 }
56
57 public void deleteSCProductVersion(
58 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
59 throws com.liferay.portal.SystemException {
60 _scProductVersionLocalService.deleteSCProductVersion(scProductVersion);
61 }
62
63 @SuppressWarnings("rawtypes")
64 public java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.SystemException {
67 return _scProductVersionLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("rawtypes")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.SystemException {
74 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
75 end);
76 }
77
78 @SuppressWarnings("rawtypes")
79 public java.util.List dynamicQuery(
80 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
81 int end,
82 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
83 throws com.liferay.portal.SystemException {
84 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
85 end, orderByComparator);
86 }
87
88 public int dynamicQueryCount(
89 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
90 throws com.liferay.portal.SystemException {
91 return _scProductVersionLocalService.dynamicQueryCount(dynamicQuery);
92 }
93
94 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
95 long productVersionId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException {
98 return _scProductVersionLocalService.getSCProductVersion(productVersionId);
99 }
100
101 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
102 int start, int end) throws com.liferay.portal.SystemException {
103 return _scProductVersionLocalService.getSCProductVersions(start, end);
104 }
105
106 public int getSCProductVersionsCount()
107 throws com.liferay.portal.SystemException {
108 return _scProductVersionLocalService.getSCProductVersionsCount();
109 }
110
111 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
112 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
113 throws com.liferay.portal.SystemException {
114 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion);
115 }
116
117 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
118 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion,
119 boolean merge) throws com.liferay.portal.SystemException {
120 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion,
121 merge);
122 }
123
124 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
125 long userId, long productEntryId, java.lang.String version,
126 java.lang.String changeLog, java.lang.String downloadPageURL,
127 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
128 boolean repoStoreArtifact, long[] frameworkVersionIds,
129 com.liferay.portal.service.ServiceContext serviceContext)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException {
132 return _scProductVersionLocalService.addProductVersion(userId,
133 productEntryId, version, changeLog, downloadPageURL,
134 directDownloadURL, testDirectDownloadURL, repoStoreArtifact,
135 frameworkVersionIds, serviceContext);
136 }
137
138 public void deleteProductVersion(long productVersionId)
139 throws com.liferay.portal.PortalException,
140 com.liferay.portal.SystemException {
141 _scProductVersionLocalService.deleteProductVersion(productVersionId);
142 }
143
144 public void deleteProductVersion(
145 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
146 throws com.liferay.portal.SystemException {
147 _scProductVersionLocalService.deleteProductVersion(productVersion);
148 }
149
150 public void deleteProductVersions(long productEntryId)
151 throws com.liferay.portal.SystemException {
152 _scProductVersionLocalService.deleteProductVersions(productEntryId);
153 }
154
155 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
156 long productVersionId)
157 throws com.liferay.portal.PortalException,
158 com.liferay.portal.SystemException {
159 return _scProductVersionLocalService.getProductVersion(productVersionId);
160 }
161
162 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
163 java.lang.String directDownloadURL)
164 throws com.liferay.portal.PortalException,
165 com.liferay.portal.SystemException {
166 return _scProductVersionLocalService.getProductVersionByDirectDownloadURL(directDownloadURL);
167 }
168
169 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
170 long productEntryId, int start, int end)
171 throws com.liferay.portal.SystemException {
172 return _scProductVersionLocalService.getProductVersions(productEntryId,
173 start, end);
174 }
175
176 public int getProductVersionsCount(long productEntryId)
177 throws com.liferay.portal.SystemException {
178 return _scProductVersionLocalService.getProductVersionsCount(productEntryId);
179 }
180
181 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
182 long productVersionId, java.lang.String version,
183 java.lang.String changeLog, java.lang.String downloadPageURL,
184 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
185 boolean repoStoreArtifact, long[] frameworkVersionIds)
186 throws com.liferay.portal.PortalException,
187 com.liferay.portal.SystemException {
188 return _scProductVersionLocalService.updateProductVersion(productVersionId,
189 version, changeLog, downloadPageURL, directDownloadURL,
190 testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds);
191 }
192
193 public SCProductVersionLocalService getWrappedSCProductVersionLocalService() {
194 return _scProductVersionLocalService;
195 }
196
197 private SCProductVersionLocalService _scProductVersionLocalService;
198 }