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="SCFrameworkVersionServiceUtil.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 SCFrameworkVersionService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       SCFrameworkVersionService
31   * @generated
32   */
33  public class SCFrameworkVersionServiceWrapper
34      implements SCFrameworkVersionService {
35      public SCFrameworkVersionServiceWrapper(
36          SCFrameworkVersionService scFrameworkVersionService) {
37          _scFrameworkVersionService = scFrameworkVersionService;
38      }
39  
40      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion addFrameworkVersion(
41          java.lang.String name, java.lang.String url, boolean active,
42          int priority, com.liferay.portal.service.ServiceContext serviceContext)
43          throws com.liferay.portal.PortalException,
44              com.liferay.portal.SystemException {
45          return _scFrameworkVersionService.addFrameworkVersion(name, url,
46              active, priority, serviceContext);
47      }
48  
49      public void deleteFrameworkVersion(long frameworkVersionId)
50          throws com.liferay.portal.PortalException,
51              com.liferay.portal.SystemException {
52          _scFrameworkVersionService.deleteFrameworkVersion(frameworkVersionId);
53      }
54  
55      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion getFrameworkVersion(
56          long frameworkVersionId)
57          throws com.liferay.portal.PortalException,
58              com.liferay.portal.SystemException {
59          return _scFrameworkVersionService.getFrameworkVersion(frameworkVersionId);
60      }
61  
62      public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
63          long groupId, boolean active) throws com.liferay.portal.SystemException {
64          return _scFrameworkVersionService.getFrameworkVersions(groupId, active);
65      }
66  
67      public java.util.List<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> getFrameworkVersions(
68          long groupId, boolean active, int start, int end)
69          throws com.liferay.portal.SystemException {
70          return _scFrameworkVersionService.getFrameworkVersions(groupId, active,
71              start, end);
72      }
73  
74      public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion updateFrameworkVersion(
75          long frameworkVersionId, java.lang.String name, java.lang.String url,
76          boolean active, int priority)
77          throws com.liferay.portal.PortalException,
78              com.liferay.portal.SystemException {
79          return _scFrameworkVersionService.updateFrameworkVersion(frameworkVersionId,
80              name, url, active, priority);
81      }
82  
83      public SCFrameworkVersionService getWrappedSCFrameworkVersionService() {
84          return _scFrameworkVersionService;
85      }
86  
87      private SCFrameworkVersionService _scFrameworkVersionService;
88  }