001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.exception.PortalException;
020 import com.liferay.portal.kernel.exception.SystemException;
021 import com.liferay.portal.kernel.search.IndexableType;
022 import com.liferay.portal.kernel.transaction.Isolation;
023 import com.liferay.portal.kernel.transaction.Propagation;
024 import com.liferay.portal.kernel.transaction.Transactional;
025 import com.liferay.portal.service.BaseLocalService;
026 import com.liferay.portal.service.PersistedModelLocalService;
027
028
040 @ProviderType
041 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
042 PortalException.class, SystemException.class})
043 public interface SCProductVersionLocalService extends BaseLocalService,
044 PersistedModelLocalService {
045
050
051
058 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
059 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
060 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
061 throws com.liferay.portal.kernel.exception.SystemException;
062
063
069 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
070 long productVersionId);
071
072
080 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
081 public com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
082 long productVersionId)
083 throws com.liferay.portal.kernel.exception.PortalException,
084 com.liferay.portal.kernel.exception.SystemException;
085
086
093 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
094 public com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
095 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
096 throws com.liferay.portal.kernel.exception.SystemException;
097
098 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
099
100
107 @SuppressWarnings("rawtypes")
108 public java.util.List dynamicQuery(
109 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
110 throws com.liferay.portal.kernel.exception.SystemException;
111
112
125 @SuppressWarnings("rawtypes")
126 public java.util.List dynamicQuery(
127 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
128 int end) throws com.liferay.portal.kernel.exception.SystemException;
129
130
144 @SuppressWarnings("rawtypes")
145 public java.util.List dynamicQuery(
146 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
147 int end,
148 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
149 throws com.liferay.portal.kernel.exception.SystemException;
150
151
158 public long dynamicQueryCount(
159 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
160 throws com.liferay.portal.kernel.exception.SystemException;
161
162
170 public long dynamicQueryCount(
171 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
172 com.liferay.portal.kernel.dao.orm.Projection projection)
173 throws com.liferay.portal.kernel.exception.SystemException;
174
175 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
176 public com.liferay.portlet.softwarecatalog.model.SCProductVersion fetchSCProductVersion(
177 long productVersionId)
178 throws com.liferay.portal.kernel.exception.SystemException;
179
180
188 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
189 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
190 long productVersionId)
191 throws com.liferay.portal.kernel.exception.PortalException,
192 com.liferay.portal.kernel.exception.SystemException;
193
194 @Override
195 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
196 public com.liferay.portal.model.PersistedModel getPersistedModel(
197 java.io.Serializable primaryKeyObj)
198 throws com.liferay.portal.kernel.exception.PortalException,
199 com.liferay.portal.kernel.exception.SystemException;
200
201
213 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
214 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
215 int start, int end)
216 throws com.liferay.portal.kernel.exception.SystemException;
217
218
224 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
225 public int getSCProductVersionsCount()
226 throws com.liferay.portal.kernel.exception.SystemException;
227
228
235 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
236 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
237 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
238 throws com.liferay.portal.kernel.exception.SystemException;
239
240
243 public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
244 long productVersionId)
245 throws com.liferay.portal.kernel.exception.SystemException;
246
247
250 public void addSCFrameworkVersionSCProductVersion(long frameworkVersionId,
251 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
252 throws com.liferay.portal.kernel.exception.SystemException;
253
254
257 public void addSCFrameworkVersionSCProductVersions(
258 long frameworkVersionId, long[] productVersionIds)
259 throws com.liferay.portal.kernel.exception.SystemException;
260
261
264 public void addSCFrameworkVersionSCProductVersions(
265 long frameworkVersionId,
266 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
267 throws com.liferay.portal.kernel.exception.SystemException;
268
269
272 public void clearSCFrameworkVersionSCProductVersions(
273 long frameworkVersionId)
274 throws com.liferay.portal.kernel.exception.SystemException;
275
276
279 public void deleteSCFrameworkVersionSCProductVersion(
280 long frameworkVersionId, long productVersionId)
281 throws com.liferay.portal.kernel.exception.SystemException;
282
283
286 public void deleteSCFrameworkVersionSCProductVersion(
287 long frameworkVersionId,
288 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
289 throws com.liferay.portal.kernel.exception.SystemException;
290
291
294 public void deleteSCFrameworkVersionSCProductVersions(
295 long frameworkVersionId, long[] productVersionIds)
296 throws com.liferay.portal.kernel.exception.SystemException;
297
298
301 public void deleteSCFrameworkVersionSCProductVersions(
302 long frameworkVersionId,
303 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> SCProductVersions)
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)
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 throws com.liferay.portal.kernel.exception.SystemException;
321
322
325 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
326 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCFrameworkVersionSCProductVersions(
327 long frameworkVersionId, int start, int end,
328 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
329 throws com.liferay.portal.kernel.exception.SystemException;
330
331
334 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
335 public int getSCFrameworkVersionSCProductVersionsCount(
336 long frameworkVersionId)
337 throws com.liferay.portal.kernel.exception.SystemException;
338
339
342 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
343 public boolean hasSCFrameworkVersionSCProductVersion(
344 long frameworkVersionId, long productVersionId)
345 throws com.liferay.portal.kernel.exception.SystemException;
346
347
350 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
351 public boolean hasSCFrameworkVersionSCProductVersions(
352 long frameworkVersionId)
353 throws com.liferay.portal.kernel.exception.SystemException;
354
355
358 public void setSCFrameworkVersionSCProductVersions(
359 long frameworkVersionId, long[] productVersionIds)
360 throws com.liferay.portal.kernel.exception.SystemException;
361
362
367 public java.lang.String getBeanIdentifier();
368
369
374 public void setBeanIdentifier(java.lang.String beanIdentifier);
375
376 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
377 long userId, long productEntryId, java.lang.String version,
378 java.lang.String changeLog, java.lang.String downloadPageURL,
379 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
380 boolean repoStoreArtifact, long[] frameworkVersionIds,
381 com.liferay.portal.service.ServiceContext serviceContext)
382 throws com.liferay.portal.kernel.exception.PortalException,
383 com.liferay.portal.kernel.exception.SystemException;
384
385 public void deleteProductVersion(long productVersionId)
386 throws com.liferay.portal.kernel.exception.PortalException,
387 com.liferay.portal.kernel.exception.SystemException;
388
389 public void deleteProductVersion(
390 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
391 throws com.liferay.portal.kernel.exception.SystemException;
392
393 public void deleteProductVersions(long productEntryId)
394 throws com.liferay.portal.kernel.exception.SystemException;
395
396 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
397 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
398 long productVersionId)
399 throws com.liferay.portal.kernel.exception.PortalException,
400 com.liferay.portal.kernel.exception.SystemException;
401
402 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
403 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
404 java.lang.String directDownloadURL)
405 throws com.liferay.portal.kernel.exception.PortalException,
406 com.liferay.portal.kernel.exception.SystemException;
407
408 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
409 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
410 long productEntryId, int start, int end)
411 throws com.liferay.portal.kernel.exception.SystemException;
412
413 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
414 public int getProductVersionsCount(long productEntryId)
415 throws com.liferay.portal.kernel.exception.SystemException;
416
417 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
418 long productVersionId, java.lang.String version,
419 java.lang.String changeLog, java.lang.String downloadPageURL,
420 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
421 boolean repoStoreArtifact, long[] frameworkVersionIds)
422 throws com.liferay.portal.kernel.exception.PortalException,
423 com.liferay.portal.kernel.exception.SystemException;
424 }