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