1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.softwarecatalog.service;
16  
17  
18  /**
19   * <a href="SCProductScreenshotLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link SCProductScreenshotLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SCProductScreenshotLocalService
32   * @generated
33   */
34  public class SCProductScreenshotLocalServiceWrapper
35      implements SCProductScreenshotLocalService {
36      public SCProductScreenshotLocalServiceWrapper(
37          SCProductScreenshotLocalService scProductScreenshotLocalService) {
38          _scProductScreenshotLocalService = scProductScreenshotLocalService;
39      }
40  
41      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
42          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
43          throws com.liferay.portal.kernel.exception.SystemException {
44          return _scProductScreenshotLocalService.addSCProductScreenshot(scProductScreenshot);
45      }
46  
47      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot createSCProductScreenshot(
48          long productScreenshotId) {
49          return _scProductScreenshotLocalService.createSCProductScreenshot(productScreenshotId);
50      }
51  
52      public void deleteSCProductScreenshot(long productScreenshotId)
53          throws com.liferay.portal.kernel.exception.PortalException,
54              com.liferay.portal.kernel.exception.SystemException {
55          _scProductScreenshotLocalService.deleteSCProductScreenshot(productScreenshotId);
56      }
57  
58      public void deleteSCProductScreenshot(
59          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          _scProductScreenshotLocalService.deleteSCProductScreenshot(scProductScreenshot);
62      }
63  
64      @SuppressWarnings("unchecked")
65      public java.util.List dynamicQuery(
66          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
67          throws com.liferay.portal.kernel.exception.SystemException {
68          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery);
69      }
70  
71      @SuppressWarnings("unchecked")
72      public java.util.List dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74          int end) throws com.liferay.portal.kernel.exception.SystemException {
75          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
76              start, end);
77      }
78  
79      @SuppressWarnings("unchecked")
80      public java.util.List dynamicQuery(
81          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
82          int end,
83          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
86              start, end, orderByComparator);
87      }
88  
89      public long dynamicQueryCount(
90          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
91          throws com.liferay.portal.kernel.exception.SystemException {
92          return _scProductScreenshotLocalService.dynamicQueryCount(dynamicQuery);
93      }
94  
95      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
96          long productScreenshotId)
97          throws com.liferay.portal.kernel.exception.PortalException,
98              com.liferay.portal.kernel.exception.SystemException {
99          return _scProductScreenshotLocalService.getSCProductScreenshot(productScreenshotId);
100     }
101 
102     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
103         int start, int end)
104         throws com.liferay.portal.kernel.exception.SystemException {
105         return _scProductScreenshotLocalService.getSCProductScreenshots(start,
106             end);
107     }
108 
109     public int getSCProductScreenshotsCount()
110         throws com.liferay.portal.kernel.exception.SystemException {
111         return _scProductScreenshotLocalService.getSCProductScreenshotsCount();
112     }
113 
114     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
115         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
116         throws com.liferay.portal.kernel.exception.SystemException {
117         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot);
118     }
119 
120     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
121         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot,
122         boolean merge)
123         throws com.liferay.portal.kernel.exception.SystemException {
124         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot,
125             merge);
126     }
127 
128     public void deleteProductScreenshot(
129         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
130         throws com.liferay.portal.kernel.exception.PortalException,
131             com.liferay.portal.kernel.exception.SystemException {
132         _scProductScreenshotLocalService.deleteProductScreenshot(productScreenshot);
133     }
134 
135     public void deleteProductScreenshots(long productEntryId)
136         throws com.liferay.portal.kernel.exception.PortalException,
137             com.liferay.portal.kernel.exception.SystemException {
138         _scProductScreenshotLocalService.deleteProductScreenshots(productEntryId);
139     }
140 
141     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
142         long productEntryId, int priority)
143         throws com.liferay.portal.kernel.exception.PortalException,
144             com.liferay.portal.kernel.exception.SystemException {
145         return _scProductScreenshotLocalService.getProductScreenshot(productEntryId,
146             priority);
147     }
148 
149     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
150         long fullImageId)
151         throws com.liferay.portal.kernel.exception.PortalException,
152             com.liferay.portal.kernel.exception.SystemException {
153         return _scProductScreenshotLocalService.getProductScreenshotByFullImageId(fullImageId);
154     }
155 
156     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
157         long thumbnailId)
158         throws com.liferay.portal.kernel.exception.PortalException,
159             com.liferay.portal.kernel.exception.SystemException {
160         return _scProductScreenshotLocalService.getProductScreenshotByThumbnailId(thumbnailId);
161     }
162 
163     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
164         long productEntryId)
165         throws com.liferay.portal.kernel.exception.SystemException {
166         return _scProductScreenshotLocalService.getProductScreenshots(productEntryId);
167     }
168 
169     public SCProductScreenshotLocalService getWrappedSCProductScreenshotLocalService() {
170         return _scProductScreenshotLocalService;
171     }
172 
173     private SCProductScreenshotLocalService _scProductScreenshotLocalService;
174 }