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 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot createSCProductScreenshot(
56 long productScreenshotId);
57
58 public void deleteSCProductScreenshot(long productScreenshotId)
59 throws com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteSCProductScreenshot(
63 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
64 throws com.liferay.portal.SystemException;
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException;
73
74 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
75 long productScreenshotId)
76 throws com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
80 int start, int end) throws com.liferay.portal.SystemException;
81
82 public int getSCProductScreenshotsCount()
83 throws com.liferay.portal.SystemException;
84
85 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
86 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
87 throws com.liferay.portal.SystemException;
88
89 public void deleteProductScreenshot(
90 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
91 throws com.liferay.portal.PortalException,
92 com.liferay.portal.SystemException;
93
94 public void deleteProductScreenshots(long productEntryId)
95 throws com.liferay.portal.PortalException,
96 com.liferay.portal.SystemException;
97
98 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
99 long productEntryId, int priority)
100 throws com.liferay.portal.PortalException,
101 com.liferay.portal.SystemException;
102
103 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
104 long productEntryId) throws com.liferay.portal.SystemException;
105
106 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
107 long fullImageId)
108 throws com.liferay.portal.PortalException,
109 com.liferay.portal.SystemException;
110
111 public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
112 long thumbnailId)
113 throws com.liferay.portal.PortalException,
114 com.liferay.portal.SystemException;
115 }