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
240 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
241 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense,
242 boolean merge)
243 throws com.liferay.portal.kernel.exception.SystemException {
244 return _scLicenseLocalService.updateSCLicense(scLicense, merge);
245 }
246
247
252 public java.lang.String getBeanIdentifier() {
253 return _scLicenseLocalService.getBeanIdentifier();
254 }
255
256
261 public void setBeanIdentifier(java.lang.String beanIdentifier) {
262 _scLicenseLocalService.setBeanIdentifier(beanIdentifier);
263 }
264
265 public com.liferay.portlet.softwarecatalog.model.SCLicense addLicense(
266 java.lang.String name, java.lang.String url, boolean openSource,
267 boolean active, boolean recommended)
268 throws com.liferay.portal.kernel.exception.PortalException,
269 com.liferay.portal.kernel.exception.SystemException {
270 return _scLicenseLocalService.addLicense(name, url, openSource, active,
271 recommended);
272 }
273
274 public void deleteLicense(long licenseId)
275 throws com.liferay.portal.kernel.exception.PortalException,
276 com.liferay.portal.kernel.exception.SystemException {
277 _scLicenseLocalService.deleteLicense(licenseId);
278 }
279
280 public void deleteLicense(
281 com.liferay.portlet.softwarecatalog.model.SCLicense license)
282 throws com.liferay.portal.kernel.exception.SystemException {
283 _scLicenseLocalService.deleteLicense(license);
284 }
285
286 public com.liferay.portlet.softwarecatalog.model.SCLicense getLicense(
287 long licenseId)
288 throws com.liferay.portal.kernel.exception.PortalException,
289 com.liferay.portal.kernel.exception.SystemException {
290 return _scLicenseLocalService.getLicense(licenseId);
291 }
292
293 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
294 throws com.liferay.portal.kernel.exception.SystemException {
295 return _scLicenseLocalService.getLicenses();
296 }
297
298 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
299 boolean active, boolean recommended)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 return _scLicenseLocalService.getLicenses(active, recommended);
302 }
303
304 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
305 boolean active, boolean recommended, int start, int end)
306 throws com.liferay.portal.kernel.exception.SystemException {
307 return _scLicenseLocalService.getLicenses(active, recommended, start,
308 end);
309 }
310
311 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
312 int start, int end)
313 throws com.liferay.portal.kernel.exception.SystemException {
314 return _scLicenseLocalService.getLicenses(start, end);
315 }
316
317 public int getLicensesCount()
318 throws com.liferay.portal.kernel.exception.SystemException {
319 return _scLicenseLocalService.getLicensesCount();
320 }
321
322 public int getLicensesCount(boolean active, boolean recommended)
323 throws com.liferay.portal.kernel.exception.SystemException {
324 return _scLicenseLocalService.getLicensesCount(active, recommended);
325 }
326
327 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getProductEntryLicenses(
328 long productEntryId)
329 throws com.liferay.portal.kernel.exception.SystemException {
330 return _scLicenseLocalService.getProductEntryLicenses(productEntryId);
331 }
332
333 public com.liferay.portlet.softwarecatalog.model.SCLicense updateLicense(
334 long licenseId, java.lang.String name, java.lang.String url,
335 boolean openSource, boolean active, boolean recommended)
336 throws com.liferay.portal.kernel.exception.PortalException,
337 com.liferay.portal.kernel.exception.SystemException {
338 return _scLicenseLocalService.updateLicense(licenseId, name, url,
339 openSource, active, recommended);
340 }
341
342
345 public SCLicenseLocalService getWrappedSCLicenseLocalService() {
346 return _scLicenseLocalService;
347 }
348
349
352 public void setWrappedSCLicenseLocalService(
353 SCLicenseLocalService scLicenseLocalService) {
354 _scLicenseLocalService = scLicenseLocalService;
355 }
356
357 public SCLicenseLocalService getWrappedService() {
358 return _scLicenseLocalService;
359 }
360
361 public void setWrappedService(SCLicenseLocalService scLicenseLocalService) {
362 _scLicenseLocalService = scLicenseLocalService;
363 }
364
365 private SCLicenseLocalService _scLicenseLocalService;
366 }