001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.softwarecatalog.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * Provides a wrapper for {@link SCFrameworkVersionLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see SCFrameworkVersionLocalService
024     * @generated
025     */
026    public class SCFrameworkVersionLocalServiceWrapper
027            implements SCFrameworkVersionLocalService,
028                    ServiceWrapper<SCFrameworkVersionLocalService> {
029            public SCFrameworkVersionLocalServiceWrapper(
030                    SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
031                    _scFrameworkVersionLocalService = scFrameworkVersionLocalService;
032            }
033    
034            /**
035            * Adds the s c framework version to the database. Also notifies the appropriate model listeners.
036            *
037            * @param scFrameworkVersion the s c framework version
038            * @return the s c framework version that was added
039            * @throws SystemException if a system exception occurred
040            */
041            @Override
042            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addSCFrameworkVersion(
043                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _scFrameworkVersionLocalService.addSCFrameworkVersion(scFrameworkVersion);
046            }
047    
048            /**
049            * Creates a new s c framework version with the primary key. Does not add the s c framework version to the database.
050            *
051            * @param frameworkVersionId the primary key for the new s c framework version
052            * @return the new s c framework version
053            */
054            @Override
055            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion createSCFrameworkVersion(
056                    long frameworkVersionId) {
057                    return _scFrameworkVersionLocalService.createSCFrameworkVersion(frameworkVersionId);
058            }
059    
060            /**
061            * Deletes the s c framework version with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param frameworkVersionId the primary key of the s c framework version
064            * @return the s c framework version that was removed
065            * @throws PortalException if a s c framework version with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            @Override
069            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion deleteSCFrameworkVersion(
070                    long frameworkVersionId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _scFrameworkVersionLocalService.deleteSCFrameworkVersion(frameworkVersionId);
074            }
075    
076            /**
077            * Deletes the s c framework version from the database. Also notifies the appropriate model listeners.
078            *
079            * @param scFrameworkVersion the s c framework version
080            * @return the s c framework version that was removed
081            * @throws SystemException if a system exception occurred
082            */
083            @Override
084            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion deleteSCFrameworkVersion(
085                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
086                    throws com.liferay.portal.kernel.exception.SystemException {
087                    return _scFrameworkVersionLocalService.deleteSCFrameworkVersion(scFrameworkVersion);
088            }
089    
090            @Override
091            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092                    return _scFrameworkVersionLocalService.dynamicQuery();
093            }
094    
095            /**
096            * Performs a dynamic query on the database and returns the matching rows.
097            *
098            * @param dynamicQuery the dynamic query
099            * @return the matching rows
100            * @throws SystemException if a system exception occurred
101            */
102            @Override
103            @SuppressWarnings("rawtypes")
104            public java.util.List dynamicQuery(
105                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery);
108            }
109    
110            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
123            @Override
124            @SuppressWarnings("rawtypes")
125            public java.util.List dynamicQuery(
126                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127                    int end) throws com.liferay.portal.kernel.exception.SystemException {
128                    return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery,
129                            start, end);
130            }
131    
132            /**
133            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
134            *
135            * <p>
136            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
137            * </p>
138            *
139            * @param dynamicQuery the dynamic query
140            * @param start the lower bound of the range of model instances
141            * @param end the upper bound of the range of model instances (not inclusive)
142            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
143            * @return the ordered range of matching rows
144            * @throws SystemException if a system exception occurred
145            */
146            @Override
147            @SuppressWarnings("rawtypes")
148            public java.util.List dynamicQuery(
149                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
150                    int end,
151                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152                    throws com.liferay.portal.kernel.exception.SystemException {
153                    return _scFrameworkVersionLocalService.dynamicQuery(dynamicQuery,
154                            start, end, orderByComparator);
155            }
156    
157            /**
158            * Returns the number of rows that match the dynamic query.
159            *
160            * @param dynamicQuery the dynamic query
161            * @return the number of rows that match the dynamic query
162            * @throws SystemException if a system exception occurred
163            */
164            @Override
165            public long dynamicQueryCount(
166                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
167                    throws com.liferay.portal.kernel.exception.SystemException {
168                    return _scFrameworkVersionLocalService.dynamicQueryCount(dynamicQuery);
169            }
170    
171            /**
172            * Returns the number of rows that match the dynamic query.
173            *
174            * @param dynamicQuery the dynamic query
175            * @param projection the projection to apply to the query
176            * @return the number of rows that match the dynamic query
177            * @throws SystemException if a system exception occurred
178            */
179            @Override
180            public long dynamicQueryCount(
181                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
182                    com.liferay.portal.kernel.dao.orm.Projection projection)
183                    throws com.liferay.portal.kernel.exception.SystemException {
184                    return _scFrameworkVersionLocalService.dynamicQueryCount(dynamicQuery,
185                            projection);
186            }
187    
188            @Override
189            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion fetchSCFrameworkVersion(
190                    long frameworkVersionId)
191                    throws com.liferay.portal.kernel.exception.SystemException {
192                    return _scFrameworkVersionLocalService.fetchSCFrameworkVersion(frameworkVersionId);
193            }
194    
195            /**
196            * Returns the s c framework version with the primary key.
197            *
198            * @param frameworkVersionId the primary key of the s c framework version
199            * @return the s c framework version
200            * @throws PortalException if a s c framework version with the primary key could not be found
201            * @throws SystemException if a system exception occurred
202            */
203            @Override
204            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getSCFrameworkVersion(
205                    long frameworkVersionId)
206                    throws com.liferay.portal.kernel.exception.PortalException,
207                            com.liferay.portal.kernel.exception.SystemException {
208                    return _scFrameworkVersionLocalService.getSCFrameworkVersion(frameworkVersionId);
209            }
210    
211            @Override
212            public com.liferay.portal.model.PersistedModel getPersistedModel(
213                    java.io.Serializable primaryKeyObj)
214                    throws com.liferay.portal.kernel.exception.PortalException,
215                            com.liferay.portal.kernel.exception.SystemException {
216                    return _scFrameworkVersionLocalService.getPersistedModel(primaryKeyObj);
217            }
218    
219            /**
220            * Returns a range of all the s c framework versions.
221            *
222            * <p>
223            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
224            * </p>
225            *
226            * @param start the lower bound of the range of s c framework versions
227            * @param end the upper bound of the range of s c framework versions (not inclusive)
228            * @return the range of s c framework versions
229            * @throws SystemException if a system exception occurred
230            */
231            @Override
232            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCFrameworkVersions(
233                    int start, int end)
234                    throws com.liferay.portal.kernel.exception.SystemException {
235                    return _scFrameworkVersionLocalService.getSCFrameworkVersions(start, end);
236            }
237    
238            /**
239            * Returns the number of s c framework versions.
240            *
241            * @return the number of s c framework versions
242            * @throws SystemException if a system exception occurred
243            */
244            @Override
245            public int getSCFrameworkVersionsCount()
246                    throws com.liferay.portal.kernel.exception.SystemException {
247                    return _scFrameworkVersionLocalService.getSCFrameworkVersionsCount();
248            }
249    
250            /**
251            * Updates the s c framework version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
252            *
253            * @param scFrameworkVersion the s c framework version
254            * @return the s c framework version that was updated
255            * @throws SystemException if a system exception occurred
256            */
257            @Override
258            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateSCFrameworkVersion(
259                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
260                    throws com.liferay.portal.kernel.exception.SystemException {
261                    return _scFrameworkVersionLocalService.updateSCFrameworkVersion(scFrameworkVersion);
262            }
263    
264            /**
265            * @throws SystemException if a system exception occurred
266            */
267            @Override
268            public void addSCProductVersionSCFrameworkVersion(long productVersionId,
269                    long frameworkVersionId)
270                    throws com.liferay.portal.kernel.exception.SystemException {
271                    _scFrameworkVersionLocalService.addSCProductVersionSCFrameworkVersion(productVersionId,
272                            frameworkVersionId);
273            }
274    
275            /**
276            * @throws SystemException if a system exception occurred
277            */
278            @Override
279            public void addSCProductVersionSCFrameworkVersion(long productVersionId,
280                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
281                    throws com.liferay.portal.kernel.exception.SystemException {
282                    _scFrameworkVersionLocalService.addSCProductVersionSCFrameworkVersion(productVersionId,
283                            scFrameworkVersion);
284            }
285    
286            /**
287            * @throws SystemException if a system exception occurred
288            */
289            @Override
290            public void addSCProductVersionSCFrameworkVersions(long productVersionId,
291                    long[] frameworkVersionIds)
292                    throws com.liferay.portal.kernel.exception.SystemException {
293                    _scFrameworkVersionLocalService.addSCProductVersionSCFrameworkVersions(productVersionId,
294                            frameworkVersionIds);
295            }
296    
297            /**
298            * @throws SystemException if a system exception occurred
299            */
300            @Override
301            public void addSCProductVersionSCFrameworkVersions(long productVersionId,
302                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> SCFrameworkVersions)
303                    throws com.liferay.portal.kernel.exception.SystemException {
304                    _scFrameworkVersionLocalService.addSCProductVersionSCFrameworkVersions(productVersionId,
305                            SCFrameworkVersions);
306            }
307    
308            /**
309            * @throws SystemException if a system exception occurred
310            */
311            @Override
312            public void clearSCProductVersionSCFrameworkVersions(long productVersionId)
313                    throws com.liferay.portal.kernel.exception.SystemException {
314                    _scFrameworkVersionLocalService.clearSCProductVersionSCFrameworkVersions(productVersionId);
315            }
316    
317            /**
318            * @throws SystemException if a system exception occurred
319            */
320            @Override
321            public void deleteSCProductVersionSCFrameworkVersion(
322                    long productVersionId, long frameworkVersionId)
323                    throws com.liferay.portal.kernel.exception.SystemException {
324                    _scFrameworkVersionLocalService.deleteSCProductVersionSCFrameworkVersion(productVersionId,
325                            frameworkVersionId);
326            }
327    
328            /**
329            * @throws SystemException if a system exception occurred
330            */
331            @Override
332            public void deleteSCProductVersionSCFrameworkVersion(
333                    long productVersionId,
334                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion)
335                    throws com.liferay.portal.kernel.exception.SystemException {
336                    _scFrameworkVersionLocalService.deleteSCProductVersionSCFrameworkVersion(productVersionId,
337                            scFrameworkVersion);
338            }
339    
340            /**
341            * @throws SystemException if a system exception occurred
342            */
343            @Override
344            public void deleteSCProductVersionSCFrameworkVersions(
345                    long productVersionId, long[] frameworkVersionIds)
346                    throws com.liferay.portal.kernel.exception.SystemException {
347                    _scFrameworkVersionLocalService.deleteSCProductVersionSCFrameworkVersions(productVersionId,
348                            frameworkVersionIds);
349            }
350    
351            /**
352            * @throws SystemException if a system exception occurred
353            */
354            @Override
355            public void deleteSCProductVersionSCFrameworkVersions(
356                    long productVersionId,
357                    java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> SCFrameworkVersions)
358                    throws com.liferay.portal.kernel.exception.SystemException {
359                    _scFrameworkVersionLocalService.deleteSCProductVersionSCFrameworkVersions(productVersionId,
360                            SCFrameworkVersions);
361            }
362    
363            /**
364            * @throws SystemException if a system exception occurred
365            */
366            @Override
367            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(
368                    long productVersionId)
369                    throws com.liferay.portal.kernel.exception.SystemException {
370                    return _scFrameworkVersionLocalService.getSCProductVersionSCFrameworkVersions(productVersionId);
371            }
372    
373            /**
374            * @throws SystemException if a system exception occurred
375            */
376            @Override
377            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(
378                    long productVersionId, int start, int end)
379                    throws com.liferay.portal.kernel.exception.SystemException {
380                    return _scFrameworkVersionLocalService.getSCProductVersionSCFrameworkVersions(productVersionId,
381                            start, end);
382            }
383    
384            /**
385            * @throws SystemException if a system exception occurred
386            */
387            @Override
388            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(
389                    long productVersionId, int start, int end,
390                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
391                    throws com.liferay.portal.kernel.exception.SystemException {
392                    return _scFrameworkVersionLocalService.getSCProductVersionSCFrameworkVersions(productVersionId,
393                            start, end, orderByComparator);
394            }
395    
396            /**
397            * @throws SystemException if a system exception occurred
398            */
399            @Override
400            public int getSCProductVersionSCFrameworkVersionsCount(
401                    long productVersionId)
402                    throws com.liferay.portal.kernel.exception.SystemException {
403                    return _scFrameworkVersionLocalService.getSCProductVersionSCFrameworkVersionsCount(productVersionId);
404            }
405    
406            /**
407            * @throws SystemException if a system exception occurred
408            */
409            @Override
410            public boolean hasSCProductVersionSCFrameworkVersion(
411                    long productVersionId, long frameworkVersionId)
412                    throws com.liferay.portal.kernel.exception.SystemException {
413                    return _scFrameworkVersionLocalService.hasSCProductVersionSCFrameworkVersion(productVersionId,
414                            frameworkVersionId);
415            }
416    
417            /**
418            * @throws SystemException if a system exception occurred
419            */
420            @Override
421            public boolean hasSCProductVersionSCFrameworkVersions(long productVersionId)
422                    throws com.liferay.portal.kernel.exception.SystemException {
423                    return _scFrameworkVersionLocalService.hasSCProductVersionSCFrameworkVersions(productVersionId);
424            }
425    
426            /**
427            * @throws SystemException if a system exception occurred
428            */
429            @Override
430            public void setSCProductVersionSCFrameworkVersions(long productVersionId,
431                    long[] frameworkVersionIds)
432                    throws com.liferay.portal.kernel.exception.SystemException {
433                    _scFrameworkVersionLocalService.setSCProductVersionSCFrameworkVersions(productVersionId,
434                            frameworkVersionIds);
435            }
436    
437            /**
438            * Returns the Spring bean ID for this bean.
439            *
440            * @return the Spring bean ID for this bean
441            */
442            @Override
443            public java.lang.String getBeanIdentifier() {
444                    return _scFrameworkVersionLocalService.getBeanIdentifier();
445            }
446    
447            /**
448            * Sets the Spring bean ID for this bean.
449            *
450            * @param beanIdentifier the Spring bean ID for this bean
451            */
452            @Override
453            public void setBeanIdentifier(java.lang.String beanIdentifier) {
454                    _scFrameworkVersionLocalService.setBeanIdentifier(beanIdentifier);
455            }
456    
457            @Override
458            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
459                    long userId, java.lang.String name, java.lang.String url,
460                    boolean active, int priority,
461                    com.liferay.portal.service.ServiceContext serviceContext)
462                    throws com.liferay.portal.kernel.exception.PortalException,
463                            com.liferay.portal.kernel.exception.SystemException {
464                    return _scFrameworkVersionLocalService.addFrameworkVersion(userId,
465                            name, url, active, priority, serviceContext);
466            }
467    
468            @Override
469            public void addFrameworkVersionResources(long frameworkVersionId,
470                    boolean addGroupPermissions, boolean addGuestPermissions)
471                    throws com.liferay.portal.kernel.exception.PortalException,
472                            com.liferay.portal.kernel.exception.SystemException {
473                    _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
474                            addGroupPermissions, addGuestPermissions);
475            }
476    
477            @Override
478            public void addFrameworkVersionResources(long frameworkVersionId,
479                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
480                    throws com.liferay.portal.kernel.exception.PortalException,
481                            com.liferay.portal.kernel.exception.SystemException {
482                    _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersionId,
483                            groupPermissions, guestPermissions);
484            }
485    
486            @Override
487            public void addFrameworkVersionResources(
488                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
489                    boolean addGroupPermissions, boolean addGuestPermissions)
490                    throws com.liferay.portal.kernel.exception.PortalException,
491                            com.liferay.portal.kernel.exception.SystemException {
492                    _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
493                            addGroupPermissions, addGuestPermissions);
494            }
495    
496            @Override
497            public void addFrameworkVersionResources(
498                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion,
499                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
500                    throws com.liferay.portal.kernel.exception.PortalException,
501                            com.liferay.portal.kernel.exception.SystemException {
502                    _scFrameworkVersionLocalService.addFrameworkVersionResources(frameworkVersion,
503                            groupPermissions, guestPermissions);
504            }
505    
506            @Override
507            public void deleteFrameworkVersion(long frameworkVersionId)
508                    throws com.liferay.portal.kernel.exception.PortalException,
509                            com.liferay.portal.kernel.exception.SystemException {
510                    _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersionId);
511            }
512    
513            @Override
514            public void deleteFrameworkVersion(
515                    com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion frameworkVersion)
516                    throws com.liferay.portal.kernel.exception.SystemException {
517                    _scFrameworkVersionLocalService.deleteFrameworkVersion(frameworkVersion);
518            }
519    
520            @Override
521            public void deleteFrameworkVersions(long groupId)
522                    throws com.liferay.portal.kernel.exception.SystemException {
523                    _scFrameworkVersionLocalService.deleteFrameworkVersions(groupId);
524            }
525    
526            @Override
527            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getFrameworkVersion(
528                    long frameworkVersionId)
529                    throws com.liferay.portal.kernel.exception.PortalException,
530                            com.liferay.portal.kernel.exception.SystemException {
531                    return _scFrameworkVersionLocalService.getFrameworkVersion(frameworkVersionId);
532            }
533    
534            @Override
535            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
536                    long groupId, boolean active)
537                    throws com.liferay.portal.kernel.exception.SystemException {
538                    return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
539                            active);
540            }
541    
542            @Override
543            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
544                    long groupId, boolean active, int start, int end)
545                    throws com.liferay.portal.kernel.exception.SystemException {
546                    return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
547                            active, start, end);
548            }
549    
550            @Override
551            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
552                    long groupId, int start, int end)
553                    throws com.liferay.portal.kernel.exception.SystemException {
554                    return _scFrameworkVersionLocalService.getFrameworkVersions(groupId,
555                            start, end);
556            }
557    
558            @Override
559            public int getFrameworkVersionsCount(long groupId)
560                    throws com.liferay.portal.kernel.exception.SystemException {
561                    return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId);
562            }
563    
564            @Override
565            public int getFrameworkVersionsCount(long groupId, boolean active)
566                    throws com.liferay.portal.kernel.exception.SystemException {
567                    return _scFrameworkVersionLocalService.getFrameworkVersionsCount(groupId,
568                            active);
569            }
570    
571            @Override
572            public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getProductVersionFrameworkVersions(
573                    long productVersionId)
574                    throws com.liferay.portal.kernel.exception.SystemException {
575                    return _scFrameworkVersionLocalService.getProductVersionFrameworkVersions(productVersionId);
576            }
577    
578            @Override
579            public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateFrameworkVersion(
580                    long frameworkVersionId, java.lang.String name, java.lang.String url,
581                    boolean active, int priority)
582                    throws com.liferay.portal.kernel.exception.PortalException,
583                            com.liferay.portal.kernel.exception.SystemException {
584                    return _scFrameworkVersionLocalService.updateFrameworkVersion(frameworkVersionId,
585                            name, url, active, priority);
586            }
587    
588            /**
589             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
590             */
591            public SCFrameworkVersionLocalService getWrappedSCFrameworkVersionLocalService() {
592                    return _scFrameworkVersionLocalService;
593            }
594    
595            /**
596             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
597             */
598            public void setWrappedSCFrameworkVersionLocalService(
599                    SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
600                    _scFrameworkVersionLocalService = scFrameworkVersionLocalService;
601            }
602    
603            @Override
604            public SCFrameworkVersionLocalService getWrappedService() {
605                    return _scFrameworkVersionLocalService;
606            }
607    
608            @Override
609            public void setWrappedService(
610                    SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
611                    _scFrameworkVersionLocalService = scFrameworkVersionLocalService;
612            }
613    
614            private SCFrameworkVersionLocalService _scFrameworkVersionLocalService;
615    }