001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017
026 public class SCProductEntryLocalServiceWrapper
027 implements SCProductEntryLocalService {
028 public SCProductEntryLocalServiceWrapper(
029 SCProductEntryLocalService scProductEntryLocalService) {
030 _scProductEntryLocalService = scProductEntryLocalService;
031 }
032
033
040 public com.liferay.portlet.softwarecatalog.model.SCProductEntry addSCProductEntry(
041 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _scProductEntryLocalService.addSCProductEntry(scProductEntry);
044 }
045
046
052 public com.liferay.portlet.softwarecatalog.model.SCProductEntry createSCProductEntry(
053 long productEntryId) {
054 return _scProductEntryLocalService.createSCProductEntry(productEntryId);
055 }
056
057
064 public void deleteSCProductEntry(long productEntryId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _scProductEntryLocalService.deleteSCProductEntry(productEntryId);
068 }
069
070
076 public void deleteSCProductEntry(
077 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _scProductEntryLocalService.deleteSCProductEntry(scProductEntry);
080 }
081
082
089 @SuppressWarnings("rawtypes")
090 public java.util.List dynamicQuery(
091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092 throws com.liferay.portal.kernel.exception.SystemException {
093 return _scProductEntryLocalService.dynamicQuery(dynamicQuery);
094 }
095
096
109 @SuppressWarnings("rawtypes")
110 public java.util.List dynamicQuery(
111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112 int end) throws com.liferay.portal.kernel.exception.SystemException {
113 return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start, end);
114 }
115
116
130 @SuppressWarnings("rawtypes")
131 public java.util.List dynamicQuery(
132 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133 int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start,
137 end, orderByComparator);
138 }
139
140
147 public long dynamicQueryCount(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _scProductEntryLocalService.dynamicQueryCount(dynamicQuery);
151 }
152
153
161 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getSCProductEntry(
162 long productEntryId)
163 throws com.liferay.portal.kernel.exception.PortalException,
164 com.liferay.portal.kernel.exception.SystemException {
165 return _scProductEntryLocalService.getSCProductEntry(productEntryId);
166 }
167
168 public com.liferay.portal.model.PersistedModel getPersistedModel(
169 java.io.Serializable primaryKeyObj)
170 throws com.liferay.portal.kernel.exception.PortalException,
171 com.liferay.portal.kernel.exception.SystemException {
172 return _scProductEntryLocalService.getPersistedModel(primaryKeyObj);
173 }
174
175
187 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCProductEntries(
188 int start, int end)
189 throws com.liferay.portal.kernel.exception.SystemException {
190 return _scProductEntryLocalService.getSCProductEntries(start, end);
191 }
192
193
199 public int getSCProductEntriesCount()
200 throws com.liferay.portal.kernel.exception.SystemException {
201 return _scProductEntryLocalService.getSCProductEntriesCount();
202 }
203
204
211 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
212 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
213 throws com.liferay.portal.kernel.exception.SystemException {
214 return _scProductEntryLocalService.updateSCProductEntry(scProductEntry);
215 }
216
217
225 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
226 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry,
227 boolean merge)
228 throws com.liferay.portal.kernel.exception.SystemException {
229 return _scProductEntryLocalService.updateSCProductEntry(scProductEntry,
230 merge);
231 }
232
233
238 public java.lang.String getBeanIdentifier() {
239 return _scProductEntryLocalService.getBeanIdentifier();
240 }
241
242
247 public void setBeanIdentifier(java.lang.String beanIdentifier) {
248 _scProductEntryLocalService.setBeanIdentifier(beanIdentifier);
249 }
250
251 public com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
252 long userId, java.lang.String name, java.lang.String type,
253 java.lang.String tags, java.lang.String shortDescription,
254 java.lang.String longDescription, java.lang.String pageURL,
255 java.lang.String author, java.lang.String repoGroupId,
256 java.lang.String repoArtifactId, long[] licenseIds,
257 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages,
258 com.liferay.portal.service.ServiceContext serviceContext)
259 throws com.liferay.portal.kernel.exception.PortalException,
260 com.liferay.portal.kernel.exception.SystemException {
261 return _scProductEntryLocalService.addProductEntry(userId, name, type,
262 tags, shortDescription, longDescription, pageURL, author,
263 repoGroupId, repoArtifactId, licenseIds, thumbnails, fullImages,
264 serviceContext);
265 }
266
267 public void addProductEntryResources(long productEntryId,
268 boolean addGroupPermissions, boolean addGuestPermissions)
269 throws com.liferay.portal.kernel.exception.PortalException,
270 com.liferay.portal.kernel.exception.SystemException {
271 _scProductEntryLocalService.addProductEntryResources(productEntryId,
272 addGroupPermissions, addGuestPermissions);
273 }
274
275 public void addProductEntryResources(long productEntryId,
276 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
277 throws com.liferay.portal.kernel.exception.PortalException,
278 com.liferay.portal.kernel.exception.SystemException {
279 _scProductEntryLocalService.addProductEntryResources(productEntryId,
280 groupPermissions, guestPermissions);
281 }
282
283 public void addProductEntryResources(
284 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
285 boolean addGroupPermissions, boolean addGuestPermissions)
286 throws com.liferay.portal.kernel.exception.PortalException,
287 com.liferay.portal.kernel.exception.SystemException {
288 _scProductEntryLocalService.addProductEntryResources(productEntry,
289 addGroupPermissions, addGuestPermissions);
290 }
291
292 public void addProductEntryResources(
293 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
294 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
295 throws com.liferay.portal.kernel.exception.PortalException,
296 com.liferay.portal.kernel.exception.SystemException {
297 _scProductEntryLocalService.addProductEntryResources(productEntry,
298 groupPermissions, guestPermissions);
299 }
300
301 public void deleteProductEntries(long groupId)
302 throws com.liferay.portal.kernel.exception.PortalException,
303 com.liferay.portal.kernel.exception.SystemException {
304 _scProductEntryLocalService.deleteProductEntries(groupId);
305 }
306
307 public void deleteProductEntry(long productEntryId)
308 throws com.liferay.portal.kernel.exception.PortalException,
309 com.liferay.portal.kernel.exception.SystemException {
310 _scProductEntryLocalService.deleteProductEntry(productEntryId);
311 }
312
313 public void deleteProductEntry(
314 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 _scProductEntryLocalService.deleteProductEntry(productEntry);
318 }
319
320 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getCompanyProductEntries(
321 long companyId, int start, int end)
322 throws com.liferay.portal.kernel.exception.SystemException {
323 return _scProductEntryLocalService.getCompanyProductEntries(companyId,
324 start, end);
325 }
326
327 public int getCompanyProductEntriesCount(long companyId)
328 throws com.liferay.portal.kernel.exception.SystemException {
329 return _scProductEntryLocalService.getCompanyProductEntriesCount(companyId);
330 }
331
332 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
333 long groupId, int start, int end)
334 throws com.liferay.portal.kernel.exception.SystemException {
335 return _scProductEntryLocalService.getProductEntries(groupId, start, end);
336 }
337
338 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
339 long groupId, int start, int end,
340 com.liferay.portal.kernel.util.OrderByComparator obc)
341 throws com.liferay.portal.kernel.exception.SystemException {
342 return _scProductEntryLocalService.getProductEntries(groupId, start,
343 end, obc);
344 }
345
346 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
347 long groupId, long userId, int start, int end)
348 throws com.liferay.portal.kernel.exception.SystemException {
349 return _scProductEntryLocalService.getProductEntries(groupId, userId,
350 start, end);
351 }
352
353 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
354 long groupId, long userId, int start, int end,
355 com.liferay.portal.kernel.util.OrderByComparator obc)
356 throws com.liferay.portal.kernel.exception.SystemException {
357 return _scProductEntryLocalService.getProductEntries(groupId, userId,
358 start, end, obc);
359 }
360
361 public int getProductEntriesCount(long groupId)
362 throws com.liferay.portal.kernel.exception.SystemException {
363 return _scProductEntryLocalService.getProductEntriesCount(groupId);
364 }
365
366 public int getProductEntriesCount(long groupId, long userId)
367 throws com.liferay.portal.kernel.exception.SystemException {
368 return _scProductEntryLocalService.getProductEntriesCount(groupId,
369 userId);
370 }
371
372 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
373 long productEntryId)
374 throws com.liferay.portal.kernel.exception.PortalException,
375 com.liferay.portal.kernel.exception.SystemException {
376 return _scProductEntryLocalService.getProductEntry(productEntryId);
377 }
378
379 public java.lang.String getRepositoryXML(long groupId,
380 java.lang.String baseImageURL, java.util.Date oldestDate,
381 int maxNumOfVersions, java.util.Properties repoSettings)
382 throws com.liferay.portal.kernel.exception.SystemException {
383 return _scProductEntryLocalService.getRepositoryXML(groupId,
384 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
385 }
386
387 public java.lang.String getRepositoryXML(long groupId,
388 java.lang.String version, java.lang.String baseImageURL,
389 java.util.Date oldestDate, int maxNumOfVersions,
390 java.util.Properties repoSettings)
391 throws com.liferay.portal.kernel.exception.SystemException {
392 return _scProductEntryLocalService.getRepositoryXML(groupId, version,
393 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
394 }
395
396 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
397 long productEntryId, java.lang.String name, java.lang.String type,
398 java.lang.String tags, java.lang.String shortDescription,
399 java.lang.String longDescription, java.lang.String pageURL,
400 java.lang.String author, java.lang.String repoGroupId,
401 java.lang.String repoArtifactId, long[] licenseIds,
402 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
403 throws com.liferay.portal.kernel.exception.PortalException,
404 com.liferay.portal.kernel.exception.SystemException {
405 return _scProductEntryLocalService.updateProductEntry(productEntryId,
406 name, type, tags, shortDescription, longDescription, pageURL,
407 author, repoGroupId, repoArtifactId, licenseIds, thumbnails,
408 fullImages);
409 }
410
411 public SCProductEntryLocalService getWrappedSCProductEntryLocalService() {
412 return _scProductEntryLocalService;
413 }
414
415 public void setWrappedSCProductEntryLocalService(
416 SCProductEntryLocalService scProductEntryLocalService) {
417 _scProductEntryLocalService = scProductEntryLocalService;
418 }
419
420 private SCProductEntryLocalService _scProductEntryLocalService;
421 }