001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class SCProductEntryLocalServiceWrapper
029 implements SCProductEntryLocalService,
030 ServiceWrapper<SCProductEntryLocalService> {
031 public SCProductEntryLocalServiceWrapper(
032 SCProductEntryLocalService scProductEntryLocalService) {
033 _scProductEntryLocalService = scProductEntryLocalService;
034 }
035
036
043 public com.liferay.portlet.softwarecatalog.model.SCProductEntry addSCProductEntry(
044 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _scProductEntryLocalService.addSCProductEntry(scProductEntry);
047 }
048
049
055 public com.liferay.portlet.softwarecatalog.model.SCProductEntry createSCProductEntry(
056 long productEntryId) {
057 return _scProductEntryLocalService.createSCProductEntry(productEntryId);
058 }
059
060
068 public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteSCProductEntry(
069 long productEntryId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _scProductEntryLocalService.deleteSCProductEntry(productEntryId);
073 }
074
075
082 public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteSCProductEntry(
083 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 return _scProductEntryLocalService.deleteSCProductEntry(scProductEntry);
086 }
087
088 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089 return _scProductEntryLocalService.dynamicQuery();
090 }
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _scProductEntryLocalService.dynamicQuery(dynamicQuery);
104 }
105
106
119 @SuppressWarnings("rawtypes")
120 public java.util.List dynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122 int end) throws com.liferay.portal.kernel.exception.SystemException {
123 return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start, end);
124 }
125
126
140 @SuppressWarnings("rawtypes")
141 public java.util.List dynamicQuery(
142 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143 int end,
144 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _scProductEntryLocalService.dynamicQuery(dynamicQuery, start,
147 end, orderByComparator);
148 }
149
150
157 public long dynamicQueryCount(
158 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _scProductEntryLocalService.dynamicQueryCount(dynamicQuery);
161 }
162
163 public com.liferay.portlet.softwarecatalog.model.SCProductEntry fetchSCProductEntry(
164 long productEntryId)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _scProductEntryLocalService.fetchSCProductEntry(productEntryId);
167 }
168
169
177 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getSCProductEntry(
178 long productEntryId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _scProductEntryLocalService.getSCProductEntry(productEntryId);
182 }
183
184 public com.liferay.portal.model.PersistedModel getPersistedModel(
185 java.io.Serializable primaryKeyObj)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _scProductEntryLocalService.getPersistedModel(primaryKeyObj);
189 }
190
191
203 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCProductEntries(
204 int start, int end)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _scProductEntryLocalService.getSCProductEntries(start, end);
207 }
208
209
215 public int getSCProductEntriesCount()
216 throws com.liferay.portal.kernel.exception.SystemException {
217 return _scProductEntryLocalService.getSCProductEntriesCount();
218 }
219
220
227 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateSCProductEntry(
228 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
229 throws com.liferay.portal.kernel.exception.SystemException {
230 return _scProductEntryLocalService.updateSCProductEntry(scProductEntry);
231 }
232
233
236 public void addSCLicenseSCProductEntry(long licenseId, long productEntryId)
237 throws com.liferay.portal.kernel.exception.SystemException {
238 _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
239 productEntryId);
240 }
241
242
245 public void addSCLicenseSCProductEntry(long licenseId,
246 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
247 throws com.liferay.portal.kernel.exception.SystemException {
248 _scProductEntryLocalService.addSCLicenseSCProductEntry(licenseId,
249 scProductEntry);
250 }
251
252
255 public void addSCLicenseSCProductEntries(long licenseId,
256 long[] productEntryIds)
257 throws com.liferay.portal.kernel.exception.SystemException {
258 _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
259 productEntryIds);
260 }
261
262
265 public void addSCLicenseSCProductEntries(long licenseId,
266 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries)
267 throws com.liferay.portal.kernel.exception.SystemException {
268 _scProductEntryLocalService.addSCLicenseSCProductEntries(licenseId,
269 SCProductEntries);
270 }
271
272
275 public void clearSCLicenseSCProductEntries(long licenseId)
276 throws com.liferay.portal.kernel.exception.SystemException {
277 _scProductEntryLocalService.clearSCLicenseSCProductEntries(licenseId);
278 }
279
280
283 public void deleteSCLicenseSCProductEntry(long licenseId,
284 long productEntryId)
285 throws com.liferay.portal.kernel.exception.SystemException {
286 _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
287 productEntryId);
288 }
289
290
293 public void deleteSCLicenseSCProductEntry(long licenseId,
294 com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry)
295 throws com.liferay.portal.kernel.exception.SystemException {
296 _scProductEntryLocalService.deleteSCLicenseSCProductEntry(licenseId,
297 scProductEntry);
298 }
299
300
303 public void deleteSCLicenseSCProductEntries(long licenseId,
304 long[] productEntryIds)
305 throws com.liferay.portal.kernel.exception.SystemException {
306 _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
307 productEntryIds);
308 }
309
310
313 public void deleteSCLicenseSCProductEntries(long licenseId,
314 java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> SCProductEntries)
315 throws com.liferay.portal.kernel.exception.SystemException {
316 _scProductEntryLocalService.deleteSCLicenseSCProductEntries(licenseId,
317 SCProductEntries);
318 }
319
320
323 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
324 long licenseId)
325 throws com.liferay.portal.kernel.exception.SystemException {
326 return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId);
327 }
328
329
332 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
333 long licenseId, int start, int end)
334 throws com.liferay.portal.kernel.exception.SystemException {
335 return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
336 start, end);
337 }
338
339
342 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getSCLicenseSCProductEntries(
343 long licenseId, int start, int end,
344 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
345 throws com.liferay.portal.kernel.exception.SystemException {
346 return _scProductEntryLocalService.getSCLicenseSCProductEntries(licenseId,
347 start, end, orderByComparator);
348 }
349
350
353 public int getSCLicenseSCProductEntriesCount(long licenseId)
354 throws com.liferay.portal.kernel.exception.SystemException {
355 return _scProductEntryLocalService.getSCLicenseSCProductEntriesCount(licenseId);
356 }
357
358
361 public boolean hasSCLicenseSCProductEntry(long licenseId,
362 long productEntryId)
363 throws com.liferay.portal.kernel.exception.SystemException {
364 return _scProductEntryLocalService.hasSCLicenseSCProductEntry(licenseId,
365 productEntryId);
366 }
367
368
371 public boolean hasSCLicenseSCProductEntries(long licenseId)
372 throws com.liferay.portal.kernel.exception.SystemException {
373 return _scProductEntryLocalService.hasSCLicenseSCProductEntries(licenseId);
374 }
375
376
379 public void setSCLicenseSCProductEntries(long licenseId,
380 long[] productEntryIds)
381 throws com.liferay.portal.kernel.exception.SystemException {
382 _scProductEntryLocalService.setSCLicenseSCProductEntries(licenseId,
383 productEntryIds);
384 }
385
386
391 public java.lang.String getBeanIdentifier() {
392 return _scProductEntryLocalService.getBeanIdentifier();
393 }
394
395
400 public void setBeanIdentifier(java.lang.String beanIdentifier) {
401 _scProductEntryLocalService.setBeanIdentifier(beanIdentifier);
402 }
403
404 public com.liferay.portlet.softwarecatalog.model.SCProductEntry addProductEntry(
405 long userId, java.lang.String name, java.lang.String type,
406 java.lang.String tags, java.lang.String shortDescription,
407 java.lang.String longDescription, java.lang.String pageURL,
408 java.lang.String author, java.lang.String repoGroupId,
409 java.lang.String repoArtifactId, long[] licenseIds,
410 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages,
411 com.liferay.portal.service.ServiceContext serviceContext)
412 throws com.liferay.portal.kernel.exception.PortalException,
413 com.liferay.portal.kernel.exception.SystemException {
414 return _scProductEntryLocalService.addProductEntry(userId, name, type,
415 tags, shortDescription, longDescription, pageURL, author,
416 repoGroupId, repoArtifactId, licenseIds, thumbnails, fullImages,
417 serviceContext);
418 }
419
420 public void addProductEntryResources(long productEntryId,
421 boolean addGroupPermissions, boolean addGuestPermissions)
422 throws com.liferay.portal.kernel.exception.PortalException,
423 com.liferay.portal.kernel.exception.SystemException {
424 _scProductEntryLocalService.addProductEntryResources(productEntryId,
425 addGroupPermissions, addGuestPermissions);
426 }
427
428 public void addProductEntryResources(long productEntryId,
429 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
430 throws com.liferay.portal.kernel.exception.PortalException,
431 com.liferay.portal.kernel.exception.SystemException {
432 _scProductEntryLocalService.addProductEntryResources(productEntryId,
433 groupPermissions, guestPermissions);
434 }
435
436 public void addProductEntryResources(
437 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
438 boolean addGroupPermissions, boolean addGuestPermissions)
439 throws com.liferay.portal.kernel.exception.PortalException,
440 com.liferay.portal.kernel.exception.SystemException {
441 _scProductEntryLocalService.addProductEntryResources(productEntry,
442 addGroupPermissions, addGuestPermissions);
443 }
444
445 public void addProductEntryResources(
446 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry,
447 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
448 throws com.liferay.portal.kernel.exception.PortalException,
449 com.liferay.portal.kernel.exception.SystemException {
450 _scProductEntryLocalService.addProductEntryResources(productEntry,
451 groupPermissions, guestPermissions);
452 }
453
454 public void deleteProductEntries(long groupId)
455 throws com.liferay.portal.kernel.exception.PortalException,
456 com.liferay.portal.kernel.exception.SystemException {
457 _scProductEntryLocalService.deleteProductEntries(groupId);
458 }
459
460 public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
461 long productEntryId)
462 throws com.liferay.portal.kernel.exception.PortalException,
463 com.liferay.portal.kernel.exception.SystemException {
464 return _scProductEntryLocalService.deleteProductEntry(productEntryId);
465 }
466
467 public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
468 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
469 throws com.liferay.portal.kernel.exception.PortalException,
470 com.liferay.portal.kernel.exception.SystemException {
471 return _scProductEntryLocalService.deleteProductEntry(productEntry);
472 }
473
474 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getCompanyProductEntries(
475 long companyId, int start, int end)
476 throws com.liferay.portal.kernel.exception.SystemException {
477 return _scProductEntryLocalService.getCompanyProductEntries(companyId,
478 start, end);
479 }
480
481 public int getCompanyProductEntriesCount(long companyId)
482 throws com.liferay.portal.kernel.exception.SystemException {
483 return _scProductEntryLocalService.getCompanyProductEntriesCount(companyId);
484 }
485
486 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
487 long groupId, int start, int end)
488 throws com.liferay.portal.kernel.exception.SystemException {
489 return _scProductEntryLocalService.getProductEntries(groupId, start, end);
490 }
491
492 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
493 long groupId, int start, int end,
494 com.liferay.portal.kernel.util.OrderByComparator obc)
495 throws com.liferay.portal.kernel.exception.SystemException {
496 return _scProductEntryLocalService.getProductEntries(groupId, start,
497 end, obc);
498 }
499
500 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
501 long groupId, long userId, int start, int end)
502 throws com.liferay.portal.kernel.exception.SystemException {
503 return _scProductEntryLocalService.getProductEntries(groupId, userId,
504 start, end);
505 }
506
507 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
508 long groupId, long userId, int start, int end,
509 com.liferay.portal.kernel.util.OrderByComparator obc)
510 throws com.liferay.portal.kernel.exception.SystemException {
511 return _scProductEntryLocalService.getProductEntries(groupId, userId,
512 start, end, obc);
513 }
514
515 public int getProductEntriesCount(long groupId)
516 throws com.liferay.portal.kernel.exception.SystemException {
517 return _scProductEntryLocalService.getProductEntriesCount(groupId);
518 }
519
520 public int getProductEntriesCount(long groupId, long userId)
521 throws com.liferay.portal.kernel.exception.SystemException {
522 return _scProductEntryLocalService.getProductEntriesCount(groupId,
523 userId);
524 }
525
526 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
527 long productEntryId)
528 throws com.liferay.portal.kernel.exception.PortalException,
529 com.liferay.portal.kernel.exception.SystemException {
530 return _scProductEntryLocalService.getProductEntry(productEntryId);
531 }
532
533 public java.lang.String getRepositoryXML(long groupId,
534 java.lang.String baseImageURL, java.util.Date oldestDate,
535 int maxNumOfVersions, java.util.Properties repoSettings)
536 throws com.liferay.portal.kernel.exception.SystemException {
537 return _scProductEntryLocalService.getRepositoryXML(groupId,
538 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
539 }
540
541 public java.lang.String getRepositoryXML(long groupId,
542 java.lang.String version, java.lang.String baseImageURL,
543 java.util.Date oldestDate, int maxNumOfVersions,
544 java.util.Properties repoSettings)
545 throws com.liferay.portal.kernel.exception.SystemException {
546 return _scProductEntryLocalService.getRepositoryXML(groupId, version,
547 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
548 }
549
550 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
551 long productEntryId, java.lang.String name, java.lang.String type,
552 java.lang.String tags, java.lang.String shortDescription,
553 java.lang.String longDescription, java.lang.String pageURL,
554 java.lang.String author, java.lang.String repoGroupId,
555 java.lang.String repoArtifactId, long[] licenseIds,
556 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
557 throws com.liferay.portal.kernel.exception.PortalException,
558 com.liferay.portal.kernel.exception.SystemException {
559 return _scProductEntryLocalService.updateProductEntry(productEntryId,
560 name, type, tags, shortDescription, longDescription, pageURL,
561 author, repoGroupId, repoArtifactId, licenseIds, thumbnails,
562 fullImages);
563 }
564
565
568 public SCProductEntryLocalService getWrappedSCProductEntryLocalService() {
569 return _scProductEntryLocalService;
570 }
571
572
575 public void setWrappedSCProductEntryLocalService(
576 SCProductEntryLocalService scProductEntryLocalService) {
577 _scProductEntryLocalService = scProductEntryLocalService;
578 }
579
580 public SCProductEntryLocalService getWrappedService() {
581 return _scProductEntryLocalService;
582 }
583
584 public void setWrappedService(
585 SCProductEntryLocalService scProductEntryLocalService) {
586 _scProductEntryLocalService = scProductEntryLocalService;
587 }
588
589 private SCProductEntryLocalService _scProductEntryLocalService;
590 }