001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
033 public class SCProductVersionLocalServiceUtil {
034
039
040
047 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
048 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
049 throws com.liferay.portal.kernel.exception.SystemException {
050 return getService().addSCProductVersion(scProductVersion);
051 }
052
053
059 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
060 long productVersionId) {
061 return getService().createSCProductVersion(productVersionId);
062 }
063
064
072 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
073 long productVersionId)
074 throws com.liferay.portal.kernel.exception.PortalException,
075 com.liferay.portal.kernel.exception.SystemException {
076 return getService().deleteSCProductVersion(productVersionId);
077 }
078
079
086 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion deleteSCProductVersion(
087 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
088 throws com.liferay.portal.kernel.exception.SystemException {
089 return getService().deleteSCProductVersion(scProductVersion);
090 }
091
092 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
093 return getService().dynamicQuery();
094 }
095
096
103 @SuppressWarnings("rawtypes")
104 public static java.util.List dynamicQuery(
105 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return getService().dynamicQuery(dynamicQuery);
108 }
109
110
123 @SuppressWarnings("rawtypes")
124 public static java.util.List dynamicQuery(
125 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126 int end) throws com.liferay.portal.kernel.exception.SystemException {
127 return getService().dynamicQuery(dynamicQuery, start, end);
128 }
129
130
144 @SuppressWarnings("rawtypes")
145 public static 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 return getService()
151 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
152 }
153
154
161 public static long dynamicQueryCount(
162 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
163 throws com.liferay.portal.kernel.exception.SystemException {
164 return getService().dynamicQueryCount(dynamicQuery);
165 }
166
167 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion fetchSCProductVersion(
168 long productVersionId)
169 throws com.liferay.portal.kernel.exception.SystemException {
170 return getService().fetchSCProductVersion(productVersionId);
171 }
172
173
181 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
182 long productVersionId)
183 throws com.liferay.portal.kernel.exception.PortalException,
184 com.liferay.portal.kernel.exception.SystemException {
185 return getService().getSCProductVersion(productVersionId);
186 }
187
188 public static com.liferay.portal.model.PersistedModel getPersistedModel(
189 java.io.Serializable primaryKeyObj)
190 throws com.liferay.portal.kernel.exception.PortalException,
191 com.liferay.portal.kernel.exception.SystemException {
192 return getService().getPersistedModel(primaryKeyObj);
193 }
194
195
207 public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
208 int start, int end)
209 throws com.liferay.portal.kernel.exception.SystemException {
210 return getService().getSCProductVersions(start, end);
211 }
212
213
219 public static int getSCProductVersionsCount()
220 throws com.liferay.portal.kernel.exception.SystemException {
221 return getService().getSCProductVersionsCount();
222 }
223
224
231 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
232 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return getService().updateSCProductVersion(scProductVersion);
235 }
236
237
242 public static java.lang.String getBeanIdentifier() {
243 return getService().getBeanIdentifier();
244 }
245
246
251 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
252 getService().setBeanIdentifier(beanIdentifier);
253 }
254
255 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
256 long userId, long productEntryId, java.lang.String version,
257 java.lang.String changeLog, java.lang.String downloadPageURL,
258 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
259 boolean repoStoreArtifact, long[] frameworkVersionIds,
260 com.liferay.portal.service.ServiceContext serviceContext)
261 throws com.liferay.portal.kernel.exception.PortalException,
262 com.liferay.portal.kernel.exception.SystemException {
263 return getService()
264 .addProductVersion(userId, productEntryId, version,
265 changeLog, downloadPageURL, directDownloadURL,
266 testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds,
267 serviceContext);
268 }
269
270 public static void deleteProductVersion(long productVersionId)
271 throws com.liferay.portal.kernel.exception.PortalException,
272 com.liferay.portal.kernel.exception.SystemException {
273 getService().deleteProductVersion(productVersionId);
274 }
275
276 public static void deleteProductVersion(
277 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
278 throws com.liferay.portal.kernel.exception.SystemException {
279 getService().deleteProductVersion(productVersion);
280 }
281
282 public static void deleteProductVersions(long productEntryId)
283 throws com.liferay.portal.kernel.exception.SystemException {
284 getService().deleteProductVersions(productEntryId);
285 }
286
287 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
288 long productVersionId)
289 throws com.liferay.portal.kernel.exception.PortalException,
290 com.liferay.portal.kernel.exception.SystemException {
291 return getService().getProductVersion(productVersionId);
292 }
293
294 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
295 java.lang.String directDownloadURL)
296 throws com.liferay.portal.kernel.exception.PortalException,
297 com.liferay.portal.kernel.exception.SystemException {
298 return getService()
299 .getProductVersionByDirectDownloadURL(directDownloadURL);
300 }
301
302 public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
303 long productEntryId, int start, int end)
304 throws com.liferay.portal.kernel.exception.SystemException {
305 return getService().getProductVersions(productEntryId, start, end);
306 }
307
308 public static int getProductVersionsCount(long productEntryId)
309 throws com.liferay.portal.kernel.exception.SystemException {
310 return getService().getProductVersionsCount(productEntryId);
311 }
312
313 public static com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
314 long productVersionId, java.lang.String version,
315 java.lang.String changeLog, java.lang.String downloadPageURL,
316 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
317 boolean repoStoreArtifact, long[] frameworkVersionIds)
318 throws com.liferay.portal.kernel.exception.PortalException,
319 com.liferay.portal.kernel.exception.SystemException {
320 return getService()
321 .updateProductVersion(productVersionId, version, changeLog,
322 downloadPageURL, directDownloadURL, testDirectDownloadURL,
323 repoStoreArtifact, frameworkVersionIds);
324 }
325
326 public static SCProductVersionLocalService getService() {
327 if (_service == null) {
328 _service = (SCProductVersionLocalService)PortalBeanLocatorUtil.locate(SCProductVersionLocalService.class.getName());
329
330 ReferenceRegistry.registerReference(SCProductVersionLocalServiceUtil.class,
331 "_service");
332 }
333
334 return _service;
335 }
336
337
340 public void setService(SCProductVersionLocalService service) {
341 }
342
343 private static SCProductVersionLocalService _service;
344 }