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 java.util.List<Object> dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end,
80          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81          throws com.liferay.portal.SystemException {
82          return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery,
83              start, end, orderByComparator);
84      }
85  
86      public int dynamicQueryCount(
87          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88          throws com.liferay.portal.SystemException {
89          return _scFrameworkVersionLocalService.dynamicQueryCount(dynamicQuery);
90      }
91  
92      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getSCFrameworkVersion(
93          long frameworkVersionId)
94          throws com.liferay.portal.PortalException,
95              com.liferay.portal.SystemException {
96          return _scFrameworkVersionLocalService.getSCFrameworkVersion(frameworkVersionId);
97      }
98  
99      public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCFrameworkVersions(
100         int start, int end) throws com.liferay.portal.SystemException {
101         return _scFrameworkVersionLocalService.getSCFrameworkVersions(start, end);
102     }
103 
104     public int getSCFrameworkVersionsCount()
105         throws com.liferay.portal.SystemException {
106         return _scFrameworkVersionLocalService.getSCFrameworkVersionsCount();
107     }
108 
109     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateSCFrameworkVersion(
110         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
111         throws com.liferay.portal.SystemException {
112         return _scFrameworkVersionLocalService.updateSCFrameworkVersion(scFrameworkVersion);
113     }
114 
115     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateSCFrameworkVersion(
116         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion,
117         boolean merge) throws com.liferay.portal.SystemException {
118         return _scFrameworkVersionLocalService.updateSCFrameworkVersion(scFrameworkVersion,
119             merge);
120     }
121 
122     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
123         long userId, java.lang.String name, java.lang.String url,
124         boolean active, int priority,
125         com.liferay.portal.service.ServiceContext serviceContext)
126         throws com.liferay.portal.PortalException,
127             com.liferay.portal.SystemException {
128         return _scFrameworkVersionLocalService.addFrameworkVersion(userId,
129             name, url, active, priority, serviceContext);
130     }
131 
132     public void addFrameworkVersionResources(long frameworkVersionId,
133         boolean addCommunityPermissions, boolean addGuestPermissions)
134         throws com.liferay.portal.PortalException,
135             com.liferay.portal.SystemException {
136         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
137             addCommunityPermissions, addGuestPermissions);
138     }
139 
140     public void addFrameworkVersionResources(
141         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
142         boolean addCommunityPermissions, boolean addGuestPermissions)
143         throws com.liferay.portal.PortalException,
144             com.liferay.portal.SystemException {
145         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
146             addCommunityPermissions, addGuestPermissions);
147     }
148 
149     public void addFrameworkVersionResources(long frameworkVersionId,
150         java.lang.String[] communityPermissions,
151         java.lang.String[] guestPermissions)
152         throws com.liferay.portal.PortalException,
153             com.liferay.portal.SystemException {
154         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
155             communityPermissions, guestPermissions);
156     }
157 
158     public void addFrameworkVersionResources(
159         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
160         java.lang.String[] communityPermissions,
161         java.lang.String[] guestPermissions)
162         throws com.liferay.portal.PortalException,
163             com.liferay.portal.SystemException {
164         _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
165             communityPermissions, guestPermissions);
166     }
167 
168     public void deleteFrameworkVersion(long frameworkVersionId)
169         throws com.liferay.portal.PortalException,
170             com.liferay.portal.SystemException {
171         _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersionId);
172     }
173 
174     public void deleteFrameworkVersion(
175         com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion)
176         throws com.liferay.portal.SystemException {
177         _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersion);
178     }
179 
180     public void deleteFrameworkVersions(long groupId)
181         throws com.liferay.portal.SystemException {
182         _scFrameworkVersionLocalService.deleteFrameworkVersions(groupId);
183     }
184 
185     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getFrameworkVersion(
186         long frameworkVersionId)
187         throws com.liferay.portal.PortalException,
188             com.liferay.portal.SystemException {
189         return _scFrameworkVersionLocalService.getFrameworkVersion(frameworkVersionId);
190     }
191 
192     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
193         long groupId, int start, int end)
194         throws com.liferay.portal.SystemException {
195         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
196             start, end);
197     }
198 
199     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
200         long groupId, boolean active) throws com.liferay.portal.SystemException {
201         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
202             active);
203     }
204 
205     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
206         long groupId, boolean active, int start, int end)
207         throws com.liferay.portal.SystemException {
208         return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
209             active, start, end);
210     }
211 
212     public int getFrameworkVersionsCount(long groupId)
213         throws com.liferay.portal.SystemException {
214         return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId);
215     }
216 
217     public int getFrameworkVersionsCount(long groupId, boolean active)
218         throws com.liferay.portal.SystemException {
219         return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId,
220             active);
221     }
222 
223     public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getProductVersionFrameworkVersions(
224         long productVersionId) throws com.liferay.portal.SystemException {
225         return _scFrameworkVersionLocalService.getProductVersionFrameworkVersions(productVersionId);
226     }
227 
228     public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateFrameworkVersion(
229         long frameworkVersionId, java.lang.String name, java.lang.String url,
230         boolean active, int priority)
231         throws com.liferay.portal.PortalException,
232             com.liferay.portal.SystemException {
233         return _scFrameworkVersionLocalService.updateFrameworkVersion(frameworkVersionId,
234             name, url, active, priority);
235     }
236 
237     public SCFrameworkVersionLocalService getWrappedSCFrameworkVersionLocalService() {
238         return _scFrameworkVersionLocalService;
239     }
240 
241     private SCFrameworkVersionLocalService _scFrameworkVersionLocalService;
242 }