1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.softwarecatalog.service;
16  
17  /**
18   * <a href="SCProductScreenshotLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link SCProductScreenshotLocalService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       SCProductScreenshotLocalService
31   * @generated
32   */
33  public class SCProductScreenshotLocalServiceWrapper
34      implements SCProductScreenshotLocalService {
35      public SCProductScreenshotLocalServiceWrapper(
36          SCProductScreenshotLocalService scProductScreenshotLocalService) {
37          _scProductScreenshotLocalService = scProductScreenshotLocalService;
38      }
39  
40      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
41          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
42          throws com.liferay.portal.SystemException {
43          return _scProductScreenshotLocalService.addSCProductScreenshot(scProductScreenshot);
44      }
45  
46      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot createSCProductScreenshot(
47          long productScreenshotId) {
48          return _scProductScreenshotLocalService.createSCProductScreenshot(productScreenshotId);
49      }
50  
51      public void deleteSCProductScreenshot(long productScreenshotId)
52          throws com.liferay.portal.PortalException,
53              com.liferay.portal.SystemException {
54          _scProductScreenshotLocalService.deleteSCProductScreenshot(productScreenshotId);
55      }
56  
57      public void deleteSCProductScreenshot(
58          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
59          throws com.liferay.portal.SystemException {
60          _scProductScreenshotLocalService.deleteSCProductScreenshot(scProductScreenshot);
61      }
62  
63      @SuppressWarnings("rawtypes")
64      public java.util.List dynamicQuery(
65          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66          throws com.liferay.portal.SystemException {
67          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery);
68      }
69  
70      @SuppressWarnings("rawtypes")
71      public java.util.List dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73          int end) throws com.liferay.portal.SystemException {
74          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
75              start, end);
76      }
77  
78      @SuppressWarnings("rawtypes")
79      public java.util.List dynamicQuery(
80          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
81          int end,
82          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
83          throws com.liferay.portal.SystemException {
84          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
85              start, end, orderByComparator);
86      }
87  
88      public int dynamicQueryCount(
89          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
90          throws com.liferay.portal.SystemException {
91          return _scProductScreenshotLocalService.dynamicQueryCount(dynamicQuery);
92      }
93  
94      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
95          long productScreenshotId)
96          throws com.liferay.portal.PortalException,
97              com.liferay.portal.SystemException {
98          return _scProductScreenshotLocalService.getSCProductScreenshot(productScreenshotId);
99      }
100 
101     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
102         int start, int end) throws com.liferay.portal.SystemException {
103         return _scProductScreenshotLocalService.getSCProductScreenshots(start,
104             end);
105     }
106 
107     public int getSCProductScreenshotsCount()
108         throws com.liferay.portal.SystemException {
109         return _scProductScreenshotLocalService.getSCProductScreenshotsCount();
110     }
111 
112     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
113         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
114         throws com.liferay.portal.SystemException {
115         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot);
116     }
117 
118     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
119         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot,
120         boolean merge) throws com.liferay.portal.SystemException {
121         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot,
122             merge);
123     }
124 
125     public void deleteProductScreenshot(
126         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
127         throws com.liferay.portal.PortalException,
128             com.liferay.portal.SystemException {
129         _scProductScreenshotLocalService.deleteProductScreenshot(productScreenshot);
130     }
131 
132     public void deleteProductScreenshots(long productEntryId)
133         throws com.liferay.portal.PortalException,
134             com.liferay.portal.SystemException {
135         _scProductScreenshotLocalService.deleteProductScreenshots(productEntryId);
136     }
137 
138     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
139         long productEntryId, int priority)
140         throws com.liferay.portal.PortalException,
141             com.liferay.portal.SystemException {
142         return _scProductScreenshotLocalService.getProductScreenshot(productEntryId,
143             priority);
144     }
145 
146     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
147         long fullImageId)
148         throws com.liferay.portal.PortalException,
149             com.liferay.portal.SystemException {
150         return _scProductScreenshotLocalService.getProductScreenshotByFullImageId(fullImageId);
151     }
152 
153     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
154         long thumbnailId)
155         throws com.liferay.portal.PortalException,
156             com.liferay.portal.SystemException {
157         return _scProductScreenshotLocalService.getProductScreenshotByThumbnailId(thumbnailId);
158     }
159 
160     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
161         long productEntryId) throws com.liferay.portal.SystemException {
162         return _scProductScreenshotLocalService.getProductScreenshots(productEntryId);
163     }
164 
165     public SCProductScreenshotLocalService getWrappedSCProductScreenshotLocalService() {
166         return _scProductScreenshotLocalService;
167     }
168 
169     private SCProductScreenshotLocalService _scProductScreenshotLocalService;
170 }