001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class SCLicenseLocalServiceWrapper implements SCLicenseLocalService,
029 ServiceWrapper<SCLicenseLocalService> {
030 public SCLicenseLocalServiceWrapper(
031 SCLicenseLocalService scLicenseLocalService) {
032 _scLicenseLocalService = scLicenseLocalService;
033 }
034
035
042 public com.liferay.portlet.softwarecatalog.model.SCLicense addSCLicense(
043 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _scLicenseLocalService.addSCLicense(scLicense);
046 }
047
048
054 public com.liferay.portlet.softwarecatalog.model.SCLicense createSCLicense(
055 long licenseId) {
056 return _scLicenseLocalService.createSCLicense(licenseId);
057 }
058
059
067 public com.liferay.portlet.softwarecatalog.model.SCLicense deleteSCLicense(
068 long licenseId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _scLicenseLocalService.deleteSCLicense(licenseId);
072 }
073
074
081 public com.liferay.portlet.softwarecatalog.model.SCLicense deleteSCLicense(
082 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _scLicenseLocalService.deleteSCLicense(scLicense);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _scLicenseLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _scLicenseLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _scLicenseLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _scLicenseLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _scLicenseLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.softwarecatalog.model.SCLicense fetchSCLicense(
163 long licenseId)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _scLicenseLocalService.fetchSCLicense(licenseId);
166 }
167
168
176 public com.liferay.portlet.softwarecatalog.model.SCLicense getSCLicense(
177 long licenseId)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _scLicenseLocalService.getSCLicense(licenseId);
181 }
182
183 public com.liferay.portal.model.PersistedModel getPersistedModel(
184 java.io.Serializable primaryKeyObj)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _scLicenseLocalService.getPersistedModel(primaryKeyObj);
188 }
189
190
202 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCLicenses(
203 int start, int end)
204 throws com.liferay.portal.kernel.exception.SystemException {
205 return _scLicenseLocalService.getSCLicenses(start, end);
206 }
207
208
214 public int getSCLicensesCount()
215 throws com.liferay.portal.kernel.exception.SystemException {
216 return _scLicenseLocalService.getSCLicensesCount();
217 }
218
219
226 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
227 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
228 throws com.liferay.portal.kernel.exception.SystemException {
229 return _scLicenseLocalService.updateSCLicense(scLicense);
230 }
231
232
235 public void addSCProductEntrySCLicense(long productEntryId, long licenseId)
236 throws com.liferay.portal.kernel.exception.SystemException {
237 _scLicenseLocalService.addSCProductEntrySCLicense(productEntryId,
238 licenseId);
239 }
240
241
244 public void addSCProductEntrySCLicense(long productEntryId,
245 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
246 throws com.liferay.portal.kernel.exception.SystemException {
247 _scLicenseLocalService.addSCProductEntrySCLicense(productEntryId,
248 scLicense);
249 }
250
251
254 public void addSCProductEntrySCLicenses(long productEntryId,
255 long[] licenseIds)
256 throws com.liferay.portal.kernel.exception.SystemException {
257 _scLicenseLocalService.addSCProductEntrySCLicenses(productEntryId,
258 licenseIds);
259 }
260
261
264 public void addSCProductEntrySCLicenses(long productEntryId,
265 java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> SCLicenses)
266 throws com.liferay.portal.kernel.exception.SystemException {
267 _scLicenseLocalService.addSCProductEntrySCLicenses(productEntryId,
268 SCLicenses);
269 }
270
271
274 public void clearSCProductEntrySCLicenses(long productEntryId)
275 throws com.liferay.portal.kernel.exception.SystemException {
276 _scLicenseLocalService.clearSCProductEntrySCLicenses(productEntryId);
277 }
278
279
282 public void deleteSCProductEntrySCLicense(long productEntryId,
283 long licenseId)
284 throws com.liferay.portal.kernel.exception.SystemException {
285 _scLicenseLocalService.deleteSCProductEntrySCLicense(productEntryId,
286 licenseId);
287 }
288
289
292 public void deleteSCProductEntrySCLicense(long productEntryId,
293 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
294 throws com.liferay.portal.kernel.exception.SystemException {
295 _scLicenseLocalService.deleteSCProductEntrySCLicense(productEntryId,
296 scLicense);
297 }
298
299
302 public void deleteSCProductEntrySCLicenses(long productEntryId,
303 long[] licenseIds)
304 throws com.liferay.portal.kernel.exception.SystemException {
305 _scLicenseLocalService.deleteSCProductEntrySCLicenses(productEntryId,
306 licenseIds);
307 }
308
309
312 public void deleteSCProductEntrySCLicenses(long productEntryId,
313 java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> SCLicenses)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 _scLicenseLocalService.deleteSCProductEntrySCLicenses(productEntryId,
316 SCLicenses);
317 }
318
319
322 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCProductEntrySCLicenses(
323 long productEntryId)
324 throws com.liferay.portal.kernel.exception.SystemException {
325 return _scLicenseLocalService.getSCProductEntrySCLicenses(productEntryId);
326 }
327
328
331 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCProductEntrySCLicenses(
332 long productEntryId, int start, int end)
333 throws com.liferay.portal.kernel.exception.SystemException {
334 return _scLicenseLocalService.getSCProductEntrySCLicenses(productEntryId,
335 start, end);
336 }
337
338
341 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCProductEntrySCLicenses(
342 long productEntryId, int start, int end,
343 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
344 throws com.liferay.portal.kernel.exception.SystemException {
345 return _scLicenseLocalService.getSCProductEntrySCLicenses(productEntryId,
346 start, end, orderByComparator);
347 }
348
349
352 public int getSCProductEntrySCLicensesCount(long productEntryId)
353 throws com.liferay.portal.kernel.exception.SystemException {
354 return _scLicenseLocalService.getSCProductEntrySCLicensesCount(productEntryId);
355 }
356
357
360 public boolean hasSCProductEntrySCLicense(long productEntryId,
361 long licenseId)
362 throws com.liferay.portal.kernel.exception.SystemException {
363 return _scLicenseLocalService.hasSCProductEntrySCLicense(productEntryId,
364 licenseId);
365 }
366
367
370 public boolean hasSCProductEntrySCLicenses(long productEntryId)
371 throws com.liferay.portal.kernel.exception.SystemException {
372 return _scLicenseLocalService.hasSCProductEntrySCLicenses(productEntryId);
373 }
374
375
378 public void setSCProductEntrySCLicenses(long productEntryId,
379 long[] licenseIds)
380 throws com.liferay.portal.kernel.exception.SystemException {
381 _scLicenseLocalService.setSCProductEntrySCLicenses(productEntryId,
382 licenseIds);
383 }
384
385
390 public java.lang.String getBeanIdentifier() {
391 return _scLicenseLocalService.getBeanIdentifier();
392 }
393
394
399 public void setBeanIdentifier(java.lang.String beanIdentifier) {
400 _scLicenseLocalService.setBeanIdentifier(beanIdentifier);
401 }
402
403 public com.liferay.portlet.softwarecatalog.model.SCLicense addLicense(
404 java.lang.String name, java.lang.String url, boolean openSource,
405 boolean active, boolean recommended)
406 throws com.liferay.portal.kernel.exception.PortalException,
407 com.liferay.portal.kernel.exception.SystemException {
408 return _scLicenseLocalService.addLicense(name, url, openSource, active,
409 recommended);
410 }
411
412 public void deleteLicense(long licenseId)
413 throws com.liferay.portal.kernel.exception.PortalException,
414 com.liferay.portal.kernel.exception.SystemException {
415 _scLicenseLocalService.deleteLicense(licenseId);
416 }
417
418 public void deleteLicense(
419 com.liferay.portlet.softwarecatalog.model.SCLicense license)
420 throws com.liferay.portal.kernel.exception.SystemException {
421 _scLicenseLocalService.deleteLicense(license);
422 }
423
424 public com.liferay.portlet.softwarecatalog.model.SCLicense getLicense(
425 long licenseId)
426 throws com.liferay.portal.kernel.exception.PortalException,
427 com.liferay.portal.kernel.exception.SystemException {
428 return _scLicenseLocalService.getLicense(licenseId);
429 }
430
431 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
432 throws com.liferay.portal.kernel.exception.SystemException {
433 return _scLicenseLocalService.getLicenses();
434 }
435
436 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
437 boolean active, boolean recommended)
438 throws com.liferay.portal.kernel.exception.SystemException {
439 return _scLicenseLocalService.getLicenses(active, recommended);
440 }
441
442 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
443 boolean active, boolean recommended, int start, int end)
444 throws com.liferay.portal.kernel.exception.SystemException {
445 return _scLicenseLocalService.getLicenses(active, recommended, start,
446 end);
447 }
448
449 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
450 int start, int end)
451 throws com.liferay.portal.kernel.exception.SystemException {
452 return _scLicenseLocalService.getLicenses(start, end);
453 }
454
455 public int getLicensesCount()
456 throws com.liferay.portal.kernel.exception.SystemException {
457 return _scLicenseLocalService.getLicensesCount();
458 }
459
460 public int getLicensesCount(boolean active, boolean recommended)
461 throws com.liferay.portal.kernel.exception.SystemException {
462 return _scLicenseLocalService.getLicensesCount(active, recommended);
463 }
464
465 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getProductEntryLicenses(
466 long productEntryId)
467 throws com.liferay.portal.kernel.exception.SystemException {
468 return _scLicenseLocalService.getProductEntryLicenses(productEntryId);
469 }
470
471 public com.liferay.portlet.softwarecatalog.model.SCLicense updateLicense(
472 long licenseId, java.lang.String name, java.lang.String url,
473 boolean openSource, boolean active, boolean recommended)
474 throws com.liferay.portal.kernel.exception.PortalException,
475 com.liferay.portal.kernel.exception.SystemException {
476 return _scLicenseLocalService.updateLicense(licenseId, name, url,
477 openSource, active, recommended);
478 }
479
480
483 public SCLicenseLocalService getWrappedSCLicenseLocalService() {
484 return _scLicenseLocalService;
485 }
486
487
490 public void setWrappedSCLicenseLocalService(
491 SCLicenseLocalService scLicenseLocalService) {
492 _scLicenseLocalService = scLicenseLocalService;
493 }
494
495 public SCLicenseLocalService getWrappedService() {
496 return _scLicenseLocalService;
497 }
498
499 public void setWrappedService(SCLicenseLocalService scLicenseLocalService) {
500 _scLicenseLocalService = scLicenseLocalService;
501 }
502
503 private SCLicenseLocalService _scLicenseLocalService;
504 }