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="SCFrameworkVersionLocalServiceUtil.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 SCFrameworkVersionLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SCFrameworkVersionLocalService
32   * @generated
33   */
34  public class SCFrameworkVersionLocalServiceWrapper
35      implements SCFrameworkVersionLocalService {
36      public SCFrameworkVersionLocalServiceWrapper(
37          SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
38          _scFrameworkVersionLocalService = scFrameworkVersionLocalService;
39      }
40  
41      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addSCFrameworkVersion(
42          com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
43          throws com.liferay.portal.SystemException {
44          return _scFrameworkVersionLocalService.addSCFrameworkVersion(scFrameworkVersion);
45      }
46  
47      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion createSCFrameworkVersion(
48          long frameworkVersionId) {
49          return _scFrameworkVersionLocalService.createSCFrameworkVersion(frameworkVersionId);
50      }
51  
52      public void deleteSCFrameworkVersion(long frameworkVersionId)
53          throws com.liferay.portal.PortalException,
54              com.liferay.portal.SystemException {
55          _scFrameworkVersionLocalService.deleteSCFrameworkVersion(frameworkVersionId);
56      }
57  
58      public void deleteSCFrameworkVersion(
59          com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
60          throws com.liferay.portal.SystemException {
61          _scFrameworkVersionLocalService.deleteSCFrameworkVersion(scFrameworkVersion);
62      }
63  
64      public java.util.List<Object> dynamicQuery(
65          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66          throws com.liferay.portal.SystemException {
67          return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery);
68      }
69  
70      public java.util.List<Object> dynamicQuery(
71          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72          int end) throws com.liferay.portal.SystemException {
73          return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery,
74              start, end);
75      }
76  
77      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getSCFrameworkVersion(
78          long frameworkVersionId)
79          throws com.liferay.portal.PortalException,
80              com.liferay.portal.SystemException {
81          return _scFrameworkVersionLocalService.getSCFrameworkVersion(frameworkVersionId);
82      }
83  
84      public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCFrameworkVersions(
85          int start, int end) throws com.liferay.portal.SystemException {
86          return _scFrameworkVersionLocalService.getSCFrameworkVersions(start, end);
87      }
88  
89      public int getSCFrameworkVersionsCount()
90          throws com.liferay.portal.SystemException {
91          return _scFrameworkVersionLocalService.getSCFrameworkVersionsCount();
92      }
93  
94      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateSCFrameworkVersion(
95          com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
96          throws com.liferay.portal.SystemException {
97          return _scFrameworkVersionLocalService.updateSCFrameworkVersion(scFrameworkVersion);
98      }
99  
100     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateSCFrameworkVersion(
101         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion,
102         boolean merge) throws com.liferay.portal.SystemException {
103         return _scFrameworkVersionLocalService.updateSCFrameworkVersion(scFrameworkVersion,
104             merge);
105     }
106 
107     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
108         long userId, long plid, java.lang.String name, java.lang.String url,
109         boolean active, int priority, boolean addCommunityPermissions,
110         boolean addGuestPermissions)
111         throws com.liferay.portal.PortalException,
112             com.liferay.portal.SystemException {
113         return _scFrameworkVersionLocalService.addFrameworkVersion(userId,
114             plid, name, url, active, priority, addCommunityPermissions,
115             addGuestPermissions);
116     }
117 
118     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
119         long userId, long plid, java.lang.String name, java.lang.String url,
120         boolean active, int priority, java.lang.String[] communityPermissions,
121         java.lang.String[] guestPermissions)
122         throws com.liferay.portal.PortalException,
123             com.liferay.portal.SystemException {
124         return _scFrameworkVersionLocalService.addFrameworkVersion(userId,
125             plid, name, url, active, priority, communityPermissions,
126             guestPermissions);
127     }
128 
129     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
130         long userId, long plid, java.lang.String name, java.lang.String url,
131         boolean active, int priority,
132         java.lang.Boolean addCommunityPermissions,
133         java.lang.Boolean addGuestPermissions,
134         java.lang.String[] communityPermissions,
135         java.lang.String[] guestPermissions)
136         throws com.liferay.portal.PortalException,
137             com.liferay.portal.SystemException {
138         return _scFrameworkVersionLocalService.addFrameworkVersion(userId,
139             plid, name, url, active, priority, addCommunityPermissions,
140             addGuestPermissions, communityPermissions, guestPermissions);
141     }
142 
143     public void addFrameworkVersionResources(long frameworkVersionId,
144         boolean addCommunityPermissions, boolean addGuestPermissions)
145         throws com.liferay.portal.PortalException,
146             com.liferay.portal.SystemException {
147         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
148             addCommunityPermissions, addGuestPermissions);
149     }
150 
151     public void addFrameworkVersionResources(
152         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
153         boolean addCommunityPermissions, boolean addGuestPermissions)
154         throws com.liferay.portal.PortalException,
155             com.liferay.portal.SystemException {
156         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
157             addCommunityPermissions, addGuestPermissions);
158     }
159 
160     public void addFrameworkVersionResources(long frameworkVersionId,
161         java.lang.String[] communityPermissions,
162         java.lang.String[] guestPermissions)
163         throws com.liferay.portal.PortalException,
164             com.liferay.portal.SystemException {
165         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
166             communityPermissions, guestPermissions);
167     }
168 
169     public void addFrameworkVersionResources(
170         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
171         java.lang.String[] communityPermissions,
172         java.lang.String[] guestPermissions)
173         throws com.liferay.portal.PortalException,
174             com.liferay.portal.SystemException {
175         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
176             communityPermissions, guestPermissions);
177     }
178 
179     public void deleteFrameworkVersion(long frameworkVersionId)
180         throws com.liferay.portal.PortalException,
181             com.liferay.portal.SystemException {
182         _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersionId);
183     }
184 
185     public void deleteFrameworkVersion(
186         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion)
187         throws com.liferay.portal.SystemException {
188         _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersion);
189     }
190 
191     public void deleteFrameworkVersions(long groupId)
192         throws com.liferay.portal.SystemException {
193         _scFrameworkVersionLocalService.deleteFrameworkVersions(groupId);
194     }
195 
196     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getFrameworkVersion(
197         long frameworkVersionId)
198         throws com.liferay.portal.PortalException,
199             com.liferay.portal.SystemException {
200         return _scFrameworkVersionLocalService.getFrameworkVersion(frameworkVersionId);
201     }
202 
203     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
204         long groupId, int start, int end)
205         throws com.liferay.portal.SystemException {
206         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
207             start, end);
208     }
209 
210     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
211         long groupId, boolean active) throws com.liferay.portal.SystemException {
212         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
213             active);
214     }
215 
216     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
217         long groupId, boolean active, int start, int end)
218         throws com.liferay.portal.SystemException {
219         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
220             active, start, end);
221     }
222 
223     public int getFrameworkVersionsCount(long groupId)
224         throws com.liferay.portal.SystemException {
225         return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId);
226     }
227 
228     public int getFrameworkVersionsCount(long groupId, boolean active)
229         throws com.liferay.portal.SystemException {
230         return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId,
231             active);
232     }
233 
234     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getProductVersionFrameworkVersions(
235         long productVersionId) throws com.liferay.portal.SystemException {
236         return _scFrameworkVersionLocalService.getProductVersionFrameworkVersions(productVersionId);
237     }
238 
239     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateFrameworkVersion(
240         long frameworkVersionId, java.lang.String name, java.lang.String url,
241         boolean active, int priority)
242         throws com.liferay.portal.PortalException,
243             com.liferay.portal.SystemException {
244         return _scFrameworkVersionLocalService.updateFrameworkVersion(frameworkVersionId,
245             name, url, active, priority);
246     }
247 
248     public SCFrameworkVersionLocalService getWrappedSCFrameworkVersionLocalService() {
249         return _scFrameworkVersionLocalService;
250     }
251 
252     private SCFrameworkVersionLocalService _scFrameworkVersionLocalService;
253 }