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