001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class SCProductVersionLocalServiceWrapper
029 implements SCProductVersionLocalService,
030 ServiceWrapper<SCProductVersionLocalService> {
031 public SCProductVersionLocalServiceWrapper(
032 SCProductVersionLocalService scProductVersionLocalService) {
033 _scProductVersionLocalService = scProductVersionLocalService;
034 }
035
036
043 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
044 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _scProductVersionLocalService.addSCProductVersion(scProductVersion);
047 }
048
049
055 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
056 long productVersionId) {
057 return _scProductVersionLocalService.createSCProductVersion(productVersionId);
058 }
059
060
067 public void deleteSCProductVersion(long productVersionId)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 _scProductVersionLocalService.deleteSCProductVersion(productVersionId);
071 }
072
073
079 public void deleteSCProductVersion(
080 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
081 throws com.liferay.portal.kernel.exception.SystemException {
082 _scProductVersionLocalService.deleteSCProductVersion(scProductVersion);
083 }
084
085
092 @SuppressWarnings("rawtypes")
093 public java.util.List dynamicQuery(
094 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095 throws com.liferay.portal.kernel.exception.SystemException {
096 return _scProductVersionLocalService.dynamicQuery(dynamicQuery);
097 }
098
099
112 @SuppressWarnings("rawtypes")
113 public java.util.List dynamicQuery(
114 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115 int end) throws com.liferay.portal.kernel.exception.SystemException {
116 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
117 end);
118 }
119
120
134 @SuppressWarnings("rawtypes")
135 public java.util.List dynamicQuery(
136 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137 int end,
138 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
141 end, orderByComparator);
142 }
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _scProductVersionLocalService.dynamicQueryCount(dynamicQuery);
155 }
156
157 public com.liferay.portlet.softwarecatalog.model.SCProductVersion fetchSCProductVersion(
158 long productVersionId)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _scProductVersionLocalService.fetchSCProductVersion(productVersionId);
161 }
162
163
171 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
172 long productVersionId)
173 throws com.liferay.portal.kernel.exception.PortalException,
174 com.liferay.portal.kernel.exception.SystemException {
175 return _scProductVersionLocalService.getSCProductVersion(productVersionId);
176 }
177
178 public com.liferay.portal.model.PersistedModel getPersistedModel(
179 java.io.Serializable primaryKeyObj)
180 throws com.liferay.portal.kernel.exception.PortalException,
181 com.liferay.portal.kernel.exception.SystemException {
182 return _scProductVersionLocalService.getPersistedModel(primaryKeyObj);
183 }
184
185
197 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
198 int start, int end)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _scProductVersionLocalService.getSCProductVersions(start, end);
201 }
202
203
209 public int getSCProductVersionsCount()
210 throws com.liferay.portal.kernel.exception.SystemException {
211 return _scProductVersionLocalService.getSCProductVersionsCount();
212 }
213
214
221 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
222 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
223 throws com.liferay.portal.kernel.exception.SystemException {
224 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion);
225 }
226
227
235 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
236 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion,
237 boolean merge)
238 throws com.liferay.portal.kernel.exception.SystemException {
239 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion,
240 merge);
241 }
242
243
248 public java.lang.String getBeanIdentifier() {
249 return _scProductVersionLocalService.getBeanIdentifier();
250 }
251
252
257 public void setBeanIdentifier(java.lang.String beanIdentifier) {
258 _scProductVersionLocalService.setBeanIdentifier(beanIdentifier);
259 }
260
261 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
262 long userId, long productEntryId, java.lang.String version,
263 java.lang.String changeLog, java.lang.String downloadPageURL,
264 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
265 boolean repoStoreArtifact, long[] frameworkVersionIds,
266 com.liferay.portal.service.ServiceContext serviceContext)
267 throws com.liferay.portal.kernel.exception.PortalException,
268 com.liferay.portal.kernel.exception.SystemException {
269 return _scProductVersionLocalService.addProductVersion(userId,
270 productEntryId, version, changeLog, downloadPageURL,
271 directDownloadURL, testDirectDownloadURL, repoStoreArtifact,
272 frameworkVersionIds, serviceContext);
273 }
274
275 public void deleteProductVersion(long productVersionId)
276 throws com.liferay.portal.kernel.exception.PortalException,
277 com.liferay.portal.kernel.exception.SystemException {
278 _scProductVersionLocalService.deleteProductVersion(productVersionId);
279 }
280
281 public void deleteProductVersion(
282 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
283 throws com.liferay.portal.kernel.exception.SystemException {
284 _scProductVersionLocalService.deleteProductVersion(productVersion);
285 }
286
287 public void deleteProductVersions(long productEntryId)
288 throws com.liferay.portal.kernel.exception.SystemException {
289 _scProductVersionLocalService.deleteProductVersions(productEntryId);
290 }
291
292 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
293 long productVersionId)
294 throws com.liferay.portal.kernel.exception.PortalException,
295 com.liferay.portal.kernel.exception.SystemException {
296 return _scProductVersionLocalService.getProductVersion(productVersionId);
297 }
298
299 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
300 java.lang.String directDownloadURL)
301 throws com.liferay.portal.kernel.exception.PortalException,
302 com.liferay.portal.kernel.exception.SystemException {
303 return _scProductVersionLocalService.getProductVersionByDirectDownloadURL(directDownloadURL);
304 }
305
306 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
307 long productEntryId, int start, int end)
308 throws com.liferay.portal.kernel.exception.SystemException {
309 return _scProductVersionLocalService.getProductVersions(productEntryId,
310 start, end);
311 }
312
313 public int getProductVersionsCount(long productEntryId)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 return _scProductVersionLocalService.getProductVersionsCount(productEntryId);
316 }
317
318 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
319 long productVersionId, java.lang.String version,
320 java.lang.String changeLog, java.lang.String downloadPageURL,
321 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
322 boolean repoStoreArtifact, long[] frameworkVersionIds)
323 throws com.liferay.portal.kernel.exception.PortalException,
324 com.liferay.portal.kernel.exception.SystemException {
325 return _scProductVersionLocalService.updateProductVersion(productVersionId,
326 version, changeLog, downloadPageURL, directDownloadURL,
327 testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds);
328 }
329
330
333 public SCProductVersionLocalService getWrappedSCProductVersionLocalService() {
334 return _scProductVersionLocalService;
335 }
336
337
340 public void setWrappedSCProductVersionLocalService(
341 SCProductVersionLocalService scProductVersionLocalService) {
342 _scProductVersionLocalService = scProductVersionLocalService;
343 }
344
345 public SCProductVersionLocalService getWrappedService() {
346 return _scProductVersionLocalService;
347 }
348
349 public void setWrappedService(
350 SCProductVersionLocalService scProductVersionLocalService) {
351 _scProductVersionLocalService = scProductVersionLocalService;
352 }
353
354 private SCProductVersionLocalService _scProductVersionLocalService;
355 }