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
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 com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
308 long productEntryId)
309 throws com.liferay.portal.kernel.exception.PortalException,
310 com.liferay.portal.kernel.exception.SystemException {
311 return _scProductEntryLocalService.deleteProductEntry(productEntryId);
312 }
313
314 public com.liferay.portlet.softwarecatalog.model.SCProductEntry deleteProductEntry(
315 com.liferay.portlet.softwarecatalog.model.SCProductEntry productEntry)
316 throws com.liferay.portal.kernel.exception.PortalException,
317 com.liferay.portal.kernel.exception.SystemException {
318 return _scProductEntryLocalService.deleteProductEntry(productEntry);
319 }
320
321 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getCompanyProductEntries(
322 long companyId, int start, int end)
323 throws com.liferay.portal.kernel.exception.SystemException {
324 return _scProductEntryLocalService.getCompanyProductEntries(companyId,
325 start, end);
326 }
327
328 public int getCompanyProductEntriesCount(long companyId)
329 throws com.liferay.portal.kernel.exception.SystemException {
330 return _scProductEntryLocalService.getCompanyProductEntriesCount(companyId);
331 }
332
333 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
334 long groupId, int start, int end)
335 throws com.liferay.portal.kernel.exception.SystemException {
336 return _scProductEntryLocalService.getProductEntries(groupId, start, end);
337 }
338
339 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
340 long groupId, int start, int end,
341 com.liferay.portal.kernel.util.OrderByComparator obc)
342 throws com.liferay.portal.kernel.exception.SystemException {
343 return _scProductEntryLocalService.getProductEntries(groupId, start,
344 end, obc);
345 }
346
347 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
348 long groupId, long userId, int start, int end)
349 throws com.liferay.portal.kernel.exception.SystemException {
350 return _scProductEntryLocalService.getProductEntries(groupId, userId,
351 start, end);
352 }
353
354 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> getProductEntries(
355 long groupId, long userId, int start, int end,
356 com.liferay.portal.kernel.util.OrderByComparator obc)
357 throws com.liferay.portal.kernel.exception.SystemException {
358 return _scProductEntryLocalService.getProductEntries(groupId, userId,
359 start, end, obc);
360 }
361
362 public int getProductEntriesCount(long groupId)
363 throws com.liferay.portal.kernel.exception.SystemException {
364 return _scProductEntryLocalService.getProductEntriesCount(groupId);
365 }
366
367 public int getProductEntriesCount(long groupId, long userId)
368 throws com.liferay.portal.kernel.exception.SystemException {
369 return _scProductEntryLocalService.getProductEntriesCount(groupId,
370 userId);
371 }
372
373 public com.liferay.portlet.softwarecatalog.model.SCProductEntry getProductEntry(
374 long productEntryId)
375 throws com.liferay.portal.kernel.exception.PortalException,
376 com.liferay.portal.kernel.exception.SystemException {
377 return _scProductEntryLocalService.getProductEntry(productEntryId);
378 }
379
380 public java.lang.String getRepositoryXML(long groupId,
381 java.lang.String baseImageURL, java.util.Date oldestDate,
382 int maxNumOfVersions, java.util.Properties repoSettings)
383 throws com.liferay.portal.kernel.exception.SystemException {
384 return _scProductEntryLocalService.getRepositoryXML(groupId,
385 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
386 }
387
388 public java.lang.String getRepositoryXML(long groupId,
389 java.lang.String version, java.lang.String baseImageURL,
390 java.util.Date oldestDate, int maxNumOfVersions,
391 java.util.Properties repoSettings)
392 throws com.liferay.portal.kernel.exception.SystemException {
393 return _scProductEntryLocalService.getRepositoryXML(groupId, version,
394 baseImageURL, oldestDate, maxNumOfVersions, repoSettings);
395 }
396
397 public com.liferay.portlet.softwarecatalog.model.SCProductEntry updateProductEntry(
398 long productEntryId, java.lang.String name, java.lang.String type,
399 java.lang.String tags, java.lang.String shortDescription,
400 java.lang.String longDescription, java.lang.String pageURL,
401 java.lang.String author, java.lang.String repoGroupId,
402 java.lang.String repoArtifactId, long[] licenseIds,
403 java.util.List<byte[]> thumbnails, java.util.List<byte[]> fullImages)
404 throws com.liferay.portal.kernel.exception.PortalException,
405 com.liferay.portal.kernel.exception.SystemException {
406 return _scProductEntryLocalService.updateProductEntry(productEntryId,
407 name, type, tags, shortDescription, longDescription, pageURL,
408 author, repoGroupId, repoArtifactId, licenseIds, thumbnails,
409 fullImages);
410 }
411
412
415 public SCProductEntryLocalService getWrappedSCProductEntryLocalService() {
416 return _scProductEntryLocalService;
417 }
418
419
422 public void setWrappedSCProductEntryLocalService(
423 SCProductEntryLocalService scProductEntryLocalService) {
424 _scProductEntryLocalService = scProductEntryLocalService;
425 }
426
427 public SCProductEntryLocalService getWrappedService() {
428 return _scProductEntryLocalService;
429 }
430
431 public void setWrappedService(
432 SCProductEntryLocalService scProductEntryLocalService) {
433 _scProductEntryLocalService = scProductEntryLocalService;
434 }
435
436 private SCProductEntryLocalService _scProductEntryLocalService;
437 }