1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.softwarecatalog.service;
24  
25  
26  /**
27   * <a href="SCProductScreenshotLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link SCProductScreenshotLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       SCProductScreenshotLocalService
40   * @generated
41   */
42  public class SCProductScreenshotLocalServiceWrapper
43      implements SCProductScreenshotLocalService {
44      public SCProductScreenshotLocalServiceWrapper(
45          SCProductScreenshotLocalService scProductScreenshotLocalService) {
46          _scProductScreenshotLocalService = scProductScreenshotLocalService;
47      }
48  
49      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot addSCProductScreenshot(
50          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
51          throws com.liferay.portal.SystemException {
52          return _scProductScreenshotLocalService.addSCProductScreenshot(scProductScreenshot);
53      }
54  
55      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot createSCProductScreenshot(
56          long productScreenshotId) {
57          return _scProductScreenshotLocalService.createSCProductScreenshot(productScreenshotId);
58      }
59  
60      public void deleteSCProductScreenshot(long productScreenshotId)
61          throws com.liferay.portal.PortalException,
62              com.liferay.portal.SystemException {
63          _scProductScreenshotLocalService.deleteSCProductScreenshot(productScreenshotId);
64      }
65  
66      public void deleteSCProductScreenshot(
67          com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
68          throws com.liferay.portal.SystemException {
69          _scProductScreenshotLocalService.deleteSCProductScreenshot(scProductScreenshot);
70      }
71  
72      public java.util.List<Object> dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74          throws com.liferay.portal.SystemException {
75          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery);
76      }
77  
78      public java.util.List<Object> dynamicQuery(
79          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80          int end) throws com.liferay.portal.SystemException {
81          return _scProductScreenshotLocalService.dynamicQuery(dynamicQuery,
82              start, end);
83      }
84  
85      public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductScreenshot(
86          long productScreenshotId)
87          throws com.liferay.portal.PortalException,
88              com.liferay.portal.SystemException {
89          return _scProductScreenshotLocalService.getSCProductScreenshot(productScreenshotId);
90      }
91  
92      public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getSCProductScreenshots(
93          int start, int end) throws com.liferay.portal.SystemException {
94          return _scProductScreenshotLocalService.getSCProductScreenshots(start,
95              end);
96      }
97  
98      public int getSCProductScreenshotsCount()
99          throws com.liferay.portal.SystemException {
100         return _scProductScreenshotLocalService.getSCProductScreenshotsCount();
101     }
102 
103     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
104         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot)
105         throws com.liferay.portal.SystemException {
106         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot);
107     }
108 
109     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot updateSCProductScreenshot(
110         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot scProductScreenshot,
111         boolean merge) throws com.liferay.portal.SystemException {
112         return _scProductScreenshotLocalService.updateSCProductScreenshot(scProductScreenshot,
113             merge);
114     }
115 
116     public void deleteProductScreenshot(
117         com.liferay.portlet.softwarecatalog.model.SCProductScreenshot productScreenshot)
118         throws com.liferay.portal.PortalException,
119             com.liferay.portal.SystemException {
120         _scProductScreenshotLocalService.deleteProductScreenshot(productScreenshot);
121     }
122 
123     public void deleteProductScreenshots(long productEntryId)
124         throws com.liferay.portal.PortalException,
125             com.liferay.portal.SystemException {
126         _scProductScreenshotLocalService.deleteProductScreenshots(productEntryId);
127     }
128 
129     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshot(
130         long productEntryId, int priority)
131         throws com.liferay.portal.PortalException,
132             com.liferay.portal.SystemException {
133         return _scProductScreenshotLocalService.getProductScreenshot(productEntryId,
134             priority);
135     }
136 
137     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByFullImageId(
138         long fullImageId)
139         throws com.liferay.portal.PortalException,
140             com.liferay.portal.SystemException {
141         return _scProductScreenshotLocalService.getProductScreenshotByFullImageId(fullImageId);
142     }
143 
144     public com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getProductScreenshotByThumbnailId(
145         long thumbnailId)
146         throws com.liferay.portal.PortalException,
147             com.liferay.portal.SystemException {
148         return _scProductScreenshotLocalService.getProductScreenshotByThumbnailId(thumbnailId);
149     }
150 
151     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductScreenshot> getProductScreenshots(
152         long productEntryId) throws com.liferay.portal.SystemException {
153         return _scProductScreenshotLocalService.getProductScreenshots(productEntryId);
154     }
155 
156     public SCProductScreenshotLocalService getWrappedSCProductScreenshotLocalService() {
157         return _scProductScreenshotLocalService;
158     }
159 
160     private SCProductScreenshotLocalService _scProductScreenshotLocalService;
161 }