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