1
22
23 package com.liferay.portlet.softwarecatalog.service;
24
25
26
47 public class SCProductScreenshotLocalServiceUtil {
48 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
49 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
50 throws com.liferay.portal.SystemException {
51 return _service.addSCProductScreenshot(scProductScreenshot);
52 }
53
54 public static void deleteSCProductScreenshot(long productScreenshotId)
55 throws com.liferay.portal.PortalException,
56 com.liferay.portal.SystemException {
57 _service.deleteSCProductScreenshot(productScreenshotId);
58 }
59
60 public static void deleteSCProductScreenshot(
61 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
62 throws com.liferay.portal.SystemException {
63 _service.deleteSCProductScreenshot(scProductScreenshot);
64 }
65
66 public static java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException {
69 return _service.dynamicQuery(dynamicQuery);
70 }
71
72 public static java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74 int end) throws com.liferay.portal.SystemException {
75 return _service.dynamicQuery(dynamicQuery, start, end);
76 }
77
78 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
79 long productScreenshotId)
80 throws com.liferay.portal.PortalException,
81 com.liferay.portal.SystemException {
82 return _service.getSCProductScreenshot(productScreenshotId);
83 }
84
85 public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
86 int start, int end) throws com.liferay.portal.SystemException {
87 return _service.getSCProductScreenshots(start, end);
88 }
89
90 public static int getSCProductScreenshotsCount()
91 throws com.liferay.portal.SystemException {
92 return _service.getSCProductScreenshotsCount();
93 }
94
95 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
96 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
97 throws com.liferay.portal.SystemException {
98 return _service.updateSCProductScreenshot(scProductScreenshot);
99 }
100
101 public static void deleteProductScreenshot(
102 com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
103 throws com.liferay.portal.PortalException,
104 com.liferay.portal.SystemException {
105 _service.deleteProductScreenshot(productScreenshot);
106 }
107
108 public static void deleteProductScreenshots(long productEntryId)
109 throws com.liferay.portal.PortalException,
110 com.liferay.portal.SystemException {
111 _service.deleteProductScreenshots(productEntryId);
112 }
113
114 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
115 long productEntryId, int priority)
116 throws com.liferay.portal.PortalException,
117 com.liferay.portal.SystemException {
118 return _service.getProductScreenshot(productEntryId, priority);
119 }
120
121 public static java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
122 long productEntryId) throws com.liferay.portal.SystemException {
123 return _service.getProductScreenshots(productEntryId);
124 }
125
126 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
127 long fullImageId)
128 throws com.liferay.portal.PortalException,
129 com.liferay.portal.SystemException {
130 return _service.getProductScreenshotByFullImageId(fullImageId);
131 }
132
133 public static com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
134 long thumbnailId)
135 throws com.liferay.portal.PortalException,
136 com.liferay.portal.SystemException {
137 return _service.getProductScreenshotByThumbnailId(thumbnailId);
138 }
139
140 public static SCProductScreenshotLocalService getService() {
141 return _service;
142 }
143
144 public void setService(SCProductScreenshotLocalService service) {
145 _service = service;
146 }
147
148 private static SCProductScreenshotLocalService _service;
149 }