001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.exception.SystemException;
019 import com.liferay.portal.kernel.transaction.Isolation;
020 import com.liferay.portal.kernel.transaction.Propagation;
021 import com.liferay.portal.kernel.transaction.Transactional;
022 import com.liferay.portal.service.BaseLocalService;
023 import com.liferay.portal.service.PersistedModelLocalService;
024
025
037 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
038 PortalException.class, SystemException.class})
039 public interface SCProductVersionLocalService extends BaseLocalService,
040 PersistedModelLocalService {
041
046
047
054 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
055 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
056 throws com.liferay.portal.kernel.exception.SystemException;
057
058
064 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
065 long productVersionId);
066
067
075 public com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
076 long productVersionId)
077 throws com.liferay.portal.kernel.exception.PortalException,
078 com.liferay.portal.kernel.exception.SystemException;
079
080
087 public com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
088 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
089 throws com.liferay.portal.kernel.exception.SystemException;
090
091 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
092
093
100 @SuppressWarnings("rawtypes")
101 public java.util.List dynamicQuery(
102 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
103 throws com.liferay.portal.kernel.exception.SystemException;
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException;
122
123
137 @SuppressWarnings("rawtypes")
138 public java.util.List dynamicQuery(
139 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
140 int end,
141 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
142 throws com.liferay.portal.kernel.exception.SystemException;
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException;
154
155
163 public long dynamicQueryCount(
164 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
165 com.liferay.portal.kernel.dao.orm.Projection projection)
166 throws com.liferay.portal.kernel.exception.SystemException;
167
168 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
169 public com.liferay.portlet.softwarecatalog.model.SCProductVersion fetchSCProductVersion(
170 long productVersionId)
171 throws com.liferay.portal.kernel.exception.SystemException;
172
173
181 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
182 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
183 long productVersionId)
184 throws com.liferay.portal.kernel.exception.PortalException,
185 com.liferay.portal.kernel.exception.SystemException;
186
187 @Override
188 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
189 public com.liferay.portal.model.PersistedModel getPersistedModel(
190 java.io.Serializable primaryKeyObj)
191 throws com.liferay.portal.kernel.exception.PortalException,
192 com.liferay.portal.kernel.exception.SystemException;
193
194
206 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
207 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
208 int start, int end)
209 throws com.liferay.portal.kernel.exception.SystemException;
210
211
217 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
218 public int getSCProductVersionsCount()
219 throws com.liferay.portal.kernel.exception.SystemException;
220
221
228 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
229 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
230 throws com.liferay.portal.kernel.exception.SystemException;
231
232
235 public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
236 long productVersionId)
237 throws com.liferay.portal.kernel.exception.SystemException;
238
239
242 public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
243 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
244 throws com.liferay.portal.kernel.exception.SystemException;
245
246
249 public void addSCFrameworkVersionSCProductVersions(
250 long frameworkVersionId, long[] productVersionIds)
251 throws com.liferay.portal.kernel.exception.SystemException;
252
253
256 public void addSCFrameworkVersionSCProductVersions(
257 long frameworkVersionId,
258 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
259 throws com.liferay.portal.kernel.exception.SystemException;
260
261
264 public void clearSCFrameworkVersionSCProductVersions(
265 long frameworkVersionId)
266 throws com.liferay.portal.kernel.exception.SystemException;
267
268
271 public void deleteSCFrameworkVersionSCProductVersion(
272 long frameworkVersionId, long productVersionId)
273 throws com.liferay.portal.kernel.exception.SystemException;
274
275
278 public void deleteSCFrameworkVersionSCProductVersion(
279 long frameworkVersionId,
280 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
281 throws com.liferay.portal.kernel.exception.SystemException;
282
283
286 public void deleteSCFrameworkVersionSCProductVersions(
287 long frameworkVersionId, long[] productVersionIds)
288 throws com.liferay.portal.kernel.exception.SystemException;
289
290
293 public void deleteSCFrameworkVersionSCProductVersions(
294 long frameworkVersionId,
295 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
296 throws com.liferay.portal.kernel.exception.SystemException;
297
298
301 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
302 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
303 long frameworkVersionId)
304 throws com.liferay.portal.kernel.exception.SystemException;
305
306
309 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
310 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
311 long frameworkVersionId, int start, int end)
312 throws com.liferay.portal.kernel.exception.SystemException;
313
314
317 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
318 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
319 long frameworkVersionId, int start, int end,
320 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
321 throws com.liferay.portal.kernel.exception.SystemException;
322
323
326 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
327 public int getSCFrameworkVersionSCProductVersionsCount(
328 long frameworkVersionId)
329 throws com.liferay.portal.kernel.exception.SystemException;
330
331
334 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
335 public boolean hasSCFrameworkVersionSCProductVersion(
336 long frameworkVersionId, long productVersionId)
337 throws com.liferay.portal.kernel.exception.SystemException;
338
339
342 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
343 public boolean hasSCFrameworkVersionSCProductVersions(
344 long frameworkVersionId)
345 throws com.liferay.portal.kernel.exception.SystemException;
346
347
350 public void setSCFrameworkVersionSCProductVersions(
351 long frameworkVersionId, long[] productVersionIds)
352 throws com.liferay.portal.kernel.exception.SystemException;
353
354
359 public java.lang.String getBeanIdentifier();
360
361
366 public void setBeanIdentifier(java.lang.String beanIdentifier);
367
368 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
369 long userId, long productEntryId, java.lang.String version,
370 java.lang.String changeLog, java.lang.String downloadPageURL,
371 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
372 boolean repoStoreArtifact, long[] frameworkVersionIds,
373 com.liferay.portal.service.ServiceContext serviceContext)
374 throws com.liferay.portal.kernel.exception.PortalException,
375 com.liferay.portal.kernel.exception.SystemException;
376
377 public void deleteProductVersion(long productVersionId)
378 throws com.liferay.portal.kernel.exception.PortalException,
379 com.liferay.portal.kernel.exception.SystemException;
380
381 public void deleteProductVersion(
382 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
383 throws com.liferay.portal.kernel.exception.SystemException;
384
385 public void deleteProductVersions(long productEntryId)
386 throws com.liferay.portal.kernel.exception.SystemException;
387
388 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
389 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
390 long productVersionId)
391 throws com.liferay.portal.kernel.exception.PortalException,
392 com.liferay.portal.kernel.exception.SystemException;
393
394 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
395 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
396 java.lang.String directDownloadURL)
397 throws com.liferay.portal.kernel.exception.PortalException,
398 com.liferay.portal.kernel.exception.SystemException;
399
400 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
401 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
402 long productEntryId, int start, int end)
403 throws com.liferay.portal.kernel.exception.SystemException;
404
405 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
406 public int getProductVersionsCount(long productEntryId)
407 throws com.liferay.portal.kernel.exception.SystemException;
408
409 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
410 long productVersionId, java.lang.String version,
411 java.lang.String changeLog, java.lang.String downloadPageURL,
412 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
413 boolean repoStoreArtifact, long[] frameworkVersionIds)
414 throws com.liferay.portal.kernel.exception.PortalException,
415 com.liferay.portal.kernel.exception.SystemException;
416 }