001
014
015 package com.liferay.portlet.softwarecatalog.service;
016
017
026 public class SCLicenseLocalServiceWrapper implements SCLicenseLocalService {
027 public SCLicenseLocalServiceWrapper(
028 SCLicenseLocalService scLicenseLocalService) {
029 _scLicenseLocalService = scLicenseLocalService;
030 }
031
032
039 public com.liferay.portlet.softwarecatalog.model.SCLicense addSCLicense(
040 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _scLicenseLocalService.addSCLicense(scLicense);
043 }
044
045
051 public com.liferay.portlet.softwarecatalog.model.SCLicense createSCLicense(
052 long licenseId) {
053 return _scLicenseLocalService.createSCLicense(licenseId);
054 }
055
056
063 public void deleteSCLicense(long licenseId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 _scLicenseLocalService.deleteSCLicense(licenseId);
067 }
068
069
075 public void deleteSCLicense(
076 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
077 throws com.liferay.portal.kernel.exception.SystemException {
078 _scLicenseLocalService.deleteSCLicense(scLicense);
079 }
080
081
088 @SuppressWarnings("rawtypes")
089 public java.util.List dynamicQuery(
090 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
091 throws com.liferay.portal.kernel.exception.SystemException {
092 return _scLicenseLocalService.dynamicQuery(dynamicQuery);
093 }
094
095
108 @SuppressWarnings("rawtypes")
109 public java.util.List dynamicQuery(
110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
111 int end) throws com.liferay.portal.kernel.exception.SystemException {
112 return _scLicenseLocalService.dynamicQuery(dynamicQuery, start, end);
113 }
114
115
129 @SuppressWarnings("rawtypes")
130 public java.util.List dynamicQuery(
131 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
132 int end,
133 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
134 throws com.liferay.portal.kernel.exception.SystemException {
135 return _scLicenseLocalService.dynamicQuery(dynamicQuery, start, end,
136 orderByComparator);
137 }
138
139
146 public long dynamicQueryCount(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
148 throws com.liferay.portal.kernel.exception.SystemException {
149 return _scLicenseLocalService.dynamicQueryCount(dynamicQuery);
150 }
151
152
160 public com.liferay.portlet.softwarecatalog.model.SCLicense getSCLicense(
161 long licenseId)
162 throws com.liferay.portal.kernel.exception.PortalException,
163 com.liferay.portal.kernel.exception.SystemException {
164 return _scLicenseLocalService.getSCLicense(licenseId);
165 }
166
167 public com.liferay.portal.model.PersistedModel getPersistedModel(
168 java.io.Serializable primaryKeyObj)
169 throws com.liferay.portal.kernel.exception.PortalException,
170 com.liferay.portal.kernel.exception.SystemException {
171 return _scLicenseLocalService.getPersistedModel(primaryKeyObj);
172 }
173
174
186 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCLicenses(
187 int start, int end)
188 throws com.liferay.portal.kernel.exception.SystemException {
189 return _scLicenseLocalService.getSCLicenses(start, end);
190 }
191
192
198 public int getSCLicensesCount()
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _scLicenseLocalService.getSCLicensesCount();
201 }
202
203
210 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
211 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
212 throws com.liferay.portal.kernel.exception.SystemException {
213 return _scLicenseLocalService.updateSCLicense(scLicense);
214 }
215
216
224 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
225 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense,
226 boolean merge)
227 throws com.liferay.portal.kernel.exception.SystemException {
228 return _scLicenseLocalService.updateSCLicense(scLicense, merge);
229 }
230
231
236 public java.lang.String getBeanIdentifier() {
237 return _scLicenseLocalService.getBeanIdentifier();
238 }
239
240
245 public void setBeanIdentifier(java.lang.String beanIdentifier) {
246 _scLicenseLocalService.setBeanIdentifier(beanIdentifier);
247 }
248
249 public com.liferay.portlet.softwarecatalog.model.SCLicense addLicense(
250 java.lang.String name, java.lang.String url, boolean openSource,
251 boolean active, boolean recommended)
252 throws com.liferay.portal.kernel.exception.PortalException,
253 com.liferay.portal.kernel.exception.SystemException {
254 return _scLicenseLocalService.addLicense(name, url, openSource, active,
255 recommended);
256 }
257
258 public void deleteLicense(long licenseId)
259 throws com.liferay.portal.kernel.exception.PortalException,
260 com.liferay.portal.kernel.exception.SystemException {
261 _scLicenseLocalService.deleteLicense(licenseId);
262 }
263
264 public void deleteLicense(
265 com.liferay.portlet.softwarecatalog.model.SCLicense license)
266 throws com.liferay.portal.kernel.exception.SystemException {
267 _scLicenseLocalService.deleteLicense(license);
268 }
269
270 public com.liferay.portlet.softwarecatalog.model.SCLicense getLicense(
271 long licenseId)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 return _scLicenseLocalService.getLicense(licenseId);
275 }
276
277 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
278 throws com.liferay.portal.kernel.exception.SystemException {
279 return _scLicenseLocalService.getLicenses();
280 }
281
282 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
283 boolean active, boolean recommended)
284 throws com.liferay.portal.kernel.exception.SystemException {
285 return _scLicenseLocalService.getLicenses(active, recommended);
286 }
287
288 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
289 boolean active, boolean recommended, int start, int end)
290 throws com.liferay.portal.kernel.exception.SystemException {
291 return _scLicenseLocalService.getLicenses(active, recommended, start,
292 end);
293 }
294
295 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
296 int start, int end)
297 throws com.liferay.portal.kernel.exception.SystemException {
298 return _scLicenseLocalService.getLicenses(start, end);
299 }
300
301 public int getLicensesCount()
302 throws com.liferay.portal.kernel.exception.SystemException {
303 return _scLicenseLocalService.getLicensesCount();
304 }
305
306 public int getLicensesCount(boolean active, boolean recommended)
307 throws com.liferay.portal.kernel.exception.SystemException {
308 return _scLicenseLocalService.getLicensesCount(active, recommended);
309 }
310
311 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getProductEntryLicenses(
312 long productEntryId)
313 throws com.liferay.portal.kernel.exception.SystemException {
314 return _scLicenseLocalService.getProductEntryLicenses(productEntryId);
315 }
316
317 public com.liferay.portlet.softwarecatalog.model.SCLicense updateLicense(
318 long licenseId, java.lang.String name, java.lang.String url,
319 boolean openSource, boolean active, boolean recommended)
320 throws com.liferay.portal.kernel.exception.PortalException,
321 com.liferay.portal.kernel.exception.SystemException {
322 return _scLicenseLocalService.updateLicense(licenseId, name, url,
323 openSource, active, recommended);
324 }
325
326 public SCLicenseLocalService getWrappedSCLicenseLocalService() {
327 return _scLicenseLocalService;
328 }
329
330 public void setWrappedSCLicenseLocalService(
331 SCLicenseLocalService scLicenseLocalService) {
332 _scLicenseLocalService = scLicenseLocalService;
333 }
334
335 private SCLicenseLocalService _scLicenseLocalService;
336 }