1
22
23 package com.liferay.portlet.softwarecatalog.service;
24
25
26
51 public interface SCProductScreenshotLocalService {
52 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
53 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
54 throws com.liferay.portal.SystemException;
55
56 public void deleteSCProductScreenshot(long productScreenshotId)
57 throws com.liferay.portal.SystemException,
58 com.liferay.portal.PortalException;
59
60 public void deleteSCProductScreenshot(
61 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
62 throws com.liferay.portal.SystemException,
63 com.liferay.portal.PortalException;
64
65 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> dynamicQuery(
66 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
67 throws com.liferay.portal.SystemException;
68
69 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> dynamicQuery(
70 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
71 int begin, int end) throws com.liferay.portal.SystemException;
72
73 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
74 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
75 throws com.liferay.portal.SystemException;
76
77 public void deleteProductScreenshot(
78 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
79 throws com.liferay.portal.SystemException;
80
81 public void deleteProductScreenshots(long productEntryId)
82 throws com.liferay.portal.SystemException;
83
84 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
85 long productEntryId, int priority)
86 throws com.liferay.portal.SystemException,
87 com.liferay.portal.PortalException;
88
89 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
90 long productEntryId) throws com.liferay.portal.SystemException;
91
92 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
93 long fullImageId)
94 throws com.liferay.portal.SystemException,
95 com.liferay.portal.PortalException;
96
97 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
98 long thumbnailId)
99 throws com.liferay.portal.SystemException,
100 com.liferay.portal.PortalException;
101 }