001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.kernel.annotation.Isolation;
018 import com.liferay.portal.kernel.annotation.Propagation;
019 import com.liferay.portal.kernel.annotation.Transactional;
020 import com.liferay.portal.kernel.exception.PortalException;
021 import com.liferay.portal.kernel.exception.SystemException;
022
023
040 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
041 PortalException.class, SystemException.class})
042 public interface SCProductVersionLocalService {
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
047 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
048 long productVersionId);
049
050 public void deleteSCProductVersion(long productVersionId)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException;
053
054 public void deleteSCProductVersion(
055 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
056 throws com.liferay.portal.kernel.exception.SystemException;
057
058 @SuppressWarnings("unchecked")
059 public java.util.List dynamicQuery(
060 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
061 throws com.liferay.portal.kernel.exception.SystemException;
062
063 @SuppressWarnings("unchecked")
064 public java.util.List dynamicQuery(
065 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066 int end) throws com.liferay.portal.kernel.exception.SystemException;
067
068 @SuppressWarnings("unchecked")
069 public java.util.List dynamicQuery(
070 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
071 int end,
072 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
073 throws com.liferay.portal.kernel.exception.SystemException;
074
075 public long dynamicQueryCount(
076 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
077 throws com.liferay.portal.kernel.exception.SystemException;
078
079 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
080 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
081 long productVersionId)
082 throws com.liferay.portal.kernel.exception.PortalException,
083 com.liferay.portal.kernel.exception.SystemException;
084
085 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
086 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
087 int start, int end)
088 throws com.liferay.portal.kernel.exception.SystemException;
089
090 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
091 public int getSCProductVersionsCount()
092 throws com.liferay.portal.kernel.exception.SystemException;
093
094 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
095 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
096 throws com.liferay.portal.kernel.exception.SystemException;
097
098 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
099 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion,
100 boolean merge)
101 throws com.liferay.portal.kernel.exception.SystemException;
102
103 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
104 long userId, long productEntryId, java.lang.String version,
105 java.lang.String changeLog, java.lang.String downloadPageURL,
106 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
107 boolean repoStoreArtifact, long[] frameworkVersionIds,
108 com.liferay.portal.service.ServiceContext serviceContext)
109 throws com.liferay.portal.kernel.exception.PortalException,
110 com.liferay.portal.kernel.exception.SystemException;
111
112 public void deleteProductVersion(long productVersionId)
113 throws com.liferay.portal.kernel.exception.PortalException,
114 com.liferay.portal.kernel.exception.SystemException;
115
116 public void deleteProductVersion(
117 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
118 throws com.liferay.portal.kernel.exception.SystemException;
119
120 public void deleteProductVersions(long productEntryId)
121 throws com.liferay.portal.kernel.exception.SystemException;
122
123 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
124 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
125 long productVersionId)
126 throws com.liferay.portal.kernel.exception.PortalException,
127 com.liferay.portal.kernel.exception.SystemException;
128
129 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
130 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
131 java.lang.String directDownloadURL)
132 throws com.liferay.portal.kernel.exception.PortalException,
133 com.liferay.portal.kernel.exception.SystemException;
134
135 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
136 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
137 long productEntryId, int start, int end)
138 throws com.liferay.portal.kernel.exception.SystemException;
139
140 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
141 public int getProductVersionsCount(long productEntryId)
142 throws com.liferay.portal.kernel.exception.SystemException;
143
144 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
145 long productVersionId, java.lang.String version,
146 java.lang.String changeLog, java.lang.String downloadPageURL,
147 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
148 boolean repoStoreArtifact, long[] frameworkVersionIds)
149 throws com.liferay.portal.kernel.exception.PortalException,
150 com.liferay.portal.kernel.exception.SystemException;
151 }